MohamedHamada
a year ago
How can i add picture in column like column button in excel userform iGrid and set every cell to open another form take it data from access database
Igor/10Tec
a year ago
First, add an ImageList control to the form and upload the image of your button into it. Next, specify this image for the required cells with the CellIcon property. And finally, process the MouseDown event for required cells to imitate cell button click.
MohamedHamada
a year ago
Is it in iGrid?
Igor/10Tec
a year ago
Yes, you asked about iGrid 🙂
MohamedHamada
a year ago
Do you have any vba codes please
Igor/10Tec
a year ago
The Using Images in iGrid topic in the help file describes the concept and provide several samples. The simplest of them you need is the following:

iGrid1.SetImageList vbalImageList1
iGrid1.CellIcon(1, 1) = 1