Please the picture pls
it happened when I move the mouse on 31 June or 31 september ( these day not exist)
I have this code
- Code: Select all Expand view
- @ 05,05 XBROWSE oBrw SIZE 470, 90 PIXEL OF oDlg ;
ARRAY aRes[ 1 ] AUTOCOLS LINES CELL NOBORDER
oBrw:aCols[ 1 ]:cHeader := 'Mese'
for n := 2 to 32
WITH OBJECT oBrw:aCols[ n ]
:nWidth := 24
:cHeader := LTrim( Str( n - 1 ) )
:SetCheck( { 'c:\work\fwh\bitmaps\level2.bmp', 'c:\work\fwh\bitmaps\level1.bmp' } )
:bCellToolTip := { |oCol| oCol:cHeader + " " + oBrw:aRow[ 1 ] + CRLF + If( oCol:Value,"Occupato","Libero" ) }
END
next