Its not very well documented in the VFP help, but you can indeed include pictures (ICO, BMP, GIF, JPG) in combo boxes and list boxes. Each item in the combo/list can have its own picture.
You assign the picture properties by treating the Picture property as a collection. For example, if I want the second item (ListIndex=2) to have the picture puertor.ico displayed for it, I'd do it like this:
[tt]MyListBox.Picture(2) = "puertor.ico"[/tt]
Thanks to colleague BD and Hacker's Guide.
Robert Bradley
You assign the picture properties by treating the Picture property as a collection. For example, if I want the second item (ListIndex=2) to have the picture puertor.ico displayed for it, I'd do it like this:
[tt]MyListBox.Picture(2) = "puertor.ico"[/tt]
Thanks to colleague BD and Hacker's Guide.
Robert Bradley