Hello Antonio
There are problem with SetColor and lCellStyle , the row focused is
always black and white
Maurizio
#include "FWCE.ch"
REQUEST DBFCDX
//----------------------------------------------------------------------------//
function Main()
local oWnd, oBrw, hBmp := ReadBitmap( CurDir() + "\go.bmp" )
USE ( CurDir() + "\Customer" ) VIA "DBFCDX"
DEFINE WINDOW oWnd TITLE "Tutor10"
@ 1, 1 LISTBOX oBrw ;
FIELDS hBmp, Customer->Last, Customer->First,Customer->City ;
SIZES 15,65,65 ,65 ;
HEADERS "", "Last", "First" ;
SIZE 280, 190
oBrw:lCellStyle := .t.
oBrw:SetColor( CLR_HRED,CLR_YELLOW )
@ 12, 2 BUTTON "Done" SIZE 80, 30 ;
ACTION oWnd:End()
ACTIVATE WINDOW oWnd ;
ON CLICK MsgInfo( "Click!" )
return nil
//----------------------------------------------------------------------------//