Results 1 to 4 of 4

Thread: Please Help for MSHFlexgrid

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2001
    Location
    Mumbai
    Posts
    7

    Please Help for MSHFlexgrid

    Hi,

    I need help regarding MSHFlexgrid. I am able to populate data in Flexgrid using datasource property. In that I have images too. The images are also seen in the gird but in bigger size than the cell width.
    Is there any way out where I can by which I can adjust the cell width of Flexgrid? The image is covering the grid.


    -Rahul

  2. #2
    jim mcnamara
    Guest
    Try posting on the General Forum. The game folks know graphics, but maybe not controls as well.

  3. #3
    New Member
    Join Date
    Oct 2001
    Location
    Malaysia
    Posts
    1

    Question The same I wanted for underdog....

    hi Can you plsss tell me how did you put the picture/icons on each cell of FlexGrid...I also wanted to do that ...Can you please help me in this regard and also solve the problem for the Bid picture then the cellheight ....


    OK .. .it'll be a great help from you for me ....Thanx in advance

    Plss..Reply me
    regards
    Aslam
    M Aslam H Ghaffar
    Software Engineer
    eSmart Golf Systems

  4. #4
    Hyperactive Member
    Join Date
    Jan 2000
    Location
    Edinburgh, Scotland
    Posts
    272
    Is there any way out where I can by which I can adjust the cell width of Flexgrid?
    You can't adjust the width of an individual cell, but you can adjust the column width:
    VB Code:
    1. ' Col is the column number
    2.     fg.ColWidth(Col) = 1500

    Can you plsss tell me how did you put the picture/icons on each cell of FlexGrid
    Set the Col and Row coordinates and then use the CellPicture property:
    VB Code:
    1. With fg
    2.         .Row = 1
    3.         .Col = 1
    4.         Set .CellPicture = LoadPicture("C:\Temp\temp.jpg")
    5.         .ColWidth(1) = 1500
    6.     End With

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