Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

msflexigrid - pictures

Status
Not open for further replies.

Dapper

Programmer
Nov 2, 2003
74
0
0
GB
Can msflexigrid hold an image or pic, say like an image of a clock.

and if so is there a special setting.

example msgrid1.textmatrix(a,1)= c:/path.clock.bmp
 

Hai, Try the following
GridName.Row=a
GridName.col=1
GridName.cellPicture=loadpicture(PicturePath)
 
You will need to use the SET keyword.

Code:
Set GridName.CellPicture=?

You can assign a picture from another control (like an image control) or an image list as well.

zemp
 
thanks zemp and madhi, both helpful.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top