-
You can obviously add an icon to a listItem, but is there anyway to add a graphic to a ListView SubItem (in lvwReport)? I have a column in my listView where the value can be "yes" or "now", and I would like to use a gaphic check for yes and a graphic X for no.
Thanks for any help...
-
In VB6 you can. Use the Listitems.add method as usual.
Add each subitem with the listitems(x).subitems.add method
then listitems(x).sutitems(y).reporticon = <icon>
you can have an icon for each listsubitem
-
i had a typo...
listitems.add
then listitems(x).listsubitems.add
listitems(x).listsubitems(y).reporticon = <icon>
-
That's what I needed! Thanks for your help...