|
-
Oct 15th, 2001, 04:27 AM
#1
Thread Starter
New Member
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
-
Oct 15th, 2001, 12:53 PM
#2
Try posting on the General Forum. The game folks know graphics, but maybe not controls as well.
-
Oct 20th, 2001, 04:03 AM
#3
New Member
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
-
Oct 20th, 2001, 01:16 PM
#4
Hyperactive Member
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:
' Col is the column number
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:
With fg
.Row = 1
.Col = 1
Set .CellPicture = LoadPicture("C:\Temp\temp.jpg")
.ColWidth(1) = 1500
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|