|
-
January 3rd, 2000, 06:21 AM
#1
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
-
January 3rd, 2000, 06:28 AM
#2
Re: Grid Controls With Pictures
Look at the www.vbAccelerator.com site for the S-Grid control.
-
January 3rd, 2000, 08:47 AM
#3
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)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|