Click to See Complete Forum and Search --> : Grid Controls With Pictures


simi
January 3rd, 2000, 05:21 AM
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

Sigal Laniado
January 3rd, 2000, 05:28 AM
Look at the www.vbAccelerator.com site for the S-Grid control.

Lothar Haensler
January 3rd, 2000, 07:47 AM
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)