Olá, a todos !
Como faço para colocar um botão de ação em uma celula array ?
ADD COLUMN TO BROWSE oLbx DATA ARRAY ELEMENT 1;
TITLE "Col 1" ;
SIZE 120 EDITABLE check; // this column is editable
COLORS CLR_BLACK, bColor; // background color from a Code Block
3DLOOK TRUE, TRUE, TRUE; // cells, titles, footers
MOVE DT_MOVE_NEXT; // cursor goes to next editable column
VALID { | uVar | ! Empty( uVar ) }; // don't want empty rows
ALIGN DT_LEFT, DT_CENTER, DT_RIGHT; // cells, title, footer
FOOTER "Totals->"
Gostaria de apresentar um botão de pesquisa, como o botão abaixo.
oBrw[ 7 ]:SetBtnGet( 6, "Help16", { | oGet, cVar | ;
aRect := GetCoors( oGet:hWnd ), cVar := oGet:Value(), ;
cVar := PESQUISAPRODUTO( cVar, aRect[ 1 ], aRect[ 2 ], oGet:oWnd ), ;
oGet:cText( cVar ), oGet:Refresh(), oGet:KeyDown( VK_RETURN, 0 ) }, 16 )
Grato a todos !
Sergio...