I found a new bug in class TXBrowse.. at end() method of TXBrwColumn:
- Code: Select all Expand view
for nFor := 1 to Len( ::aBitmaps )
PalBmpFree( ::aBitmaps[ BITMAP_HANDLE ], ::aBitmaps[ BITMAP_PALETTE ] )
next
The property ::aBitmaps is a multi-dimensional array... and is need to access with the line number too... like this:
- Code: Select all Expand view
for nFor := 1 to Len( ::aBitmaps )
PalBmpFree( ::aBitmaps[ nFor, BITMAP_HANDLE ], ::aBitmaps[ nFor, BITMAP_PALETTE ] )
next
In new fivewin 8.11... maybe this bug has been corrected!