MohamedHamada
2024-03-23T22:35:11Z
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
2024-03-25T07:51:59Z
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
2024-03-26T00:48:24Z
Is it in iGrid?
Igor/10Tec
2024-03-26T08:09:00Z
Yes, you asked about iGrid 🙂
MohamedHamada
2024-03-29T03:15:26Z
Do you have any vba codes please
Igor/10Tec
2024-03-29T08:52:21Z
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