Apr 5, 2004 #1 Dapper Programmer Nov 2, 2003 74 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
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
Apr 5, 2004 #2 Madhi Programmer Feb 26, 2004 19 IN Hai, Try the following GridName.Row=a GridName.col=1 GridName.cellPicture=loadpicture(PicturePath) Upvote 0 Downvote
Apr 5, 2004 #3 zemp Programmer Jan 27, 2002 3,301 CA 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 Upvote 0 Downvote
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
Apr 5, 2004 Thread starter #4 Dapper Programmer Nov 2, 2003 74 GB thanks zemp and madhi, both helpful. Upvote 0 Downvote