Grid Controls With Pictures
Is there a grid control around (preferable one that already comes with VB) that allows you to add pictures to the control?
I would like to be able to place markers on the left side of a grid control to quickly identigy data types. Is this possible?
I would liek to get these images from an image list or from files on the system, rather than loading thm from a database.
Thank you
DS
Re: Grid Controls With Pictures
Look at the www.vbAccelerator.com site for the S-Grid control.
Re: Grid Controls With Pictures
you can use the msflexgrid control that comes with vb6 to assign a picture from an image list to a cell:
m.Row = 1
m.Col = 1
set m.CellPicture = i.ListImages(1).Picture
where m is the name of the msflexgrid control and i is the name of the image list (which contains bmps)