2
votes
How to draw a bmp/icon on a TListView subitem in Delphi?
Use a TImageList component to hold your images, assign it to the listviews's SmallImages property and set subitem's ImageIndex.
…
1
vote
Custom drawing in TListview descendant.
Which version of Delphi are you using? In Delphi 2007 TListView has support for custom-drawing by handling NM_CUSTOMDRAW messages, as described …
