CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 1999
    Posts
    29

    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


  2. #2
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    140

    Re: Grid Controls With Pictures

    Look at the www.vbAccelerator.com site for the S-Grid control.


  3. #3
    Join Date
    May 1999
    Posts
    3,332

    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
  •  





Click Here to Expand Forum to Full Width

Featured