At the moment I am trying to fill IGRID7 ActiveX 64bit in VBA with icons. In your example you use the following code:
Set m_objImageList = New CImageList
With m_objImageList
.Create 24, 24, ThisWorkbook.Path & "\Images\"
.AddImage "RedSquare.bmp"
.AddImage "OrangeSquare.bmp"
.AddImage "GreenSquare.bmp"
End With
I do not want to use extra files but store the files in the excel document itself. Is it possible to fill a CImagelist with the content of various image objects?