I've got the problem with TXBrowse(), the ::bBmpData has display incorrectly.
When I use this data and focus the Bitmap will not display.
oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW
- Code: Select all Expand view
- REDEFINE XBROWSE oBrw FIELDS str(SPR->PAR_NO,2) , ;
SPR->PAR_DESC, ;
SPR->PAR_VAR, ;
'' ;
FONT oFnt ;
FIELDSIZES 30,300,100,50 ;
HEADERS 'No.', 'Description', 'Variable', 'Status' ;
ID 101 ;
OF oDlg ;
ALIAS 'SPR' ;
ON DBLCLICK ( ChngStatus(oBrw) )
// oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW
oBrw:nRowDividerStyle := LINESTYLE_LIGHTGRAY
oBrw:nColDividerStyle := LINESTYLE_LIGHTGRAY
oBrw:nHeaderHeight := 25
oBrw:nRowHeight := 22
oBrw:lHScroll := .F.
oBrw:nStretchCol := STRETCHCOL_LAST
oBrw:lAllowRowSizing := .F.
oBrw:lColDividerComplete:= .T.
oBrw:aCols[4]:AddResource("RIGHT")
oBrw:aCols[4]:bBmpData := { || iif(SPR->PAR_STATUS, 1, 0) }
oBrw:aCols[4]:nDataBmpAlign := AL_CENTER
I think it has effected from 9.07 (not sure)
Regards,
Dutch