LISTBOX - ao clicar correr outra Função

Post Reply
rasptty
Posts: 88
Joined: Sun May 25, 2008 5:46 pm

LISTBOX - ao clicar correr outra Função

Post by rasptty »

Será que é possivel, quando clicar num registo da tabela gerada pelo código em baixo correr outra função por exemplo mostra_ficha()

isto é clico num registo e mostra a ficha...

Obrigado




@ 1, 1 LISTBOX oBrw ;
FIELDS If( RecNo() % 2== 0, hBmp1, hBmp2 ), Customer->Last, Customer->First ;
HEADERS "", "Last", "First" ;
COLSIZES 20, 70, 80 ;
SIZE 220, 167 FONT oFont
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

@ 1, 1 LISTBOX oBrw ;
FIELDS If( RecNo() % 2== 0, hBmp1, hBmp2 ), Customer->Last, Customer->First ;
HEADERS "", "Last", "First" ;
COLSIZES 20, 70, 80 ;
SIZE 220, 167 FONT oFont ;
ON CHANGE mostra_ficha()
regards, saludos

Antonio Linares
www.fivetechsoft.com
rasptty
Posts: 88
Joined: Sun May 25, 2008 5:46 pm

Post by rasptty »

Obrigado , mas eu queria só quando clico sobre o registo, é
que assim sempre que clico na tabela activa a função inclusivé o scrollbar

só ao clicar sobre o registo...
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

oBrw:bLClicked := { || mostra_ficha() }
regards, saludos

Antonio Linares
www.fivetechsoft.com
rasptty
Posts: 88
Joined: Sun May 25, 2008 5:46 pm

Post by rasptty »

Obrigado Funcionou;
estou com alguma dificuldade em encontrar as funções / Comandos
do FWPPC; qual será o melhor HELP

Por exemplo o caso anterior onde está a sintax

Obrigado Linares pela Ajuda
rasptty
Posts: 88
Joined: Sun May 25, 2008 5:46 pm

Post by rasptty »

Obrigado Funcionou;
estou com alguma dificuldade em encontrar as funções / Comandos
do FWPPC; qual será o melhor HELP

Por exemplo o caso anterior onde está a sintax

Obrigado Linares pela Ajuda
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Please review fwppc\include\fwce.ch to see the most recent available commands syntax.

Then review fwppc\source\classes\*.prg to locate a method that you may need to use with an object.

Finally have a look at fwppc\source\winapi\*.c to see how the C wrappers are implemented in case that you need to modify something.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply