Is it possible to change color of headers of a twbrowse?
#include "fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL oBrw
USE customer
DEFINE DIALOG oDlg FROM 100 , 100 TO 800 , 600 PIXEL
@ 1 , 1 LISTBOX oBrw FIELDS SIZE 200 , 200
oBrw:nClrText := CLR_HBLUE
ACTIVATE DIALOG oDLG CENTER
RETURN NIL
I am able to change cells color.
I have to change headers color
In this samples the words "FIRST", "LAST", STREET" CLR_HBLUE like cells
Thanks