Hi to all,
Please I need Help
The second column is not displayed correctly
If I Double Click,I can see the real content of aa_chn->des_chn field
Any (Urgent please) Hints?

Marco
Here you can find dbf table
http://www.marcoboschi.it/public/aa_chn.dbf
Please I need Help
The second column is not displayed correctly
If I Double Click,I can see the real content of aa_chn->des_chn field
Any (Urgent please) Hints?

Marco
Here you can find dbf table
http://www.marcoboschi.it/public/aa_chn.dbf
#include "fivewin.ch"
#include "tcbrowse.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL oBrw
LOCAL oCol
FW_SetUnicode( .T. )
USE aa_chn
DEFINE DIALOG oDlg FROM 10 , 10 TO 300 , 800 PIXEL
@ 1 , 1 BROWSE oBrw OF oDlg SIZE 300 , 100
oCol := TcColumn():New( "Code" , { | | field->codice } , , , , , , , , , , , , )
oBrw:addcolumn( oCol )
oCol := TcColumn():New( "Description" , { | | field->des_chn } , , , , , , , , , , , , )
oBrw:addcolumn( oCol )
oBrw:blDblClick:= {|| MsgInfo( field->des_chn ) }
ACTIVATE DIALOG oDlg CENTER
RETURN NILMarco Boschi
info@marcoboschi.it
info@marcoboschi.it
