Bug in TWBrowse:nClrPane
Posted: Sat Oct 14, 2006 4:12 pm
This is the sample (you will see that all the not focused cells of the current row are black):
EMG
Code: Select all
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oBrw
USE TEST
DEFINE DIALOG oDlg
@ 0, 0 LISTBOX oBrw FIELDS
oBrw:lCellStyle = .T.
oBrw:nClrPane := { || CLR_HGREEN }
ACTIVATE DIALOG oDlg;
ON INIT oDlg:SetControl( oBrw );
CENTER
CLOSE
RETURN NIL