How to assign image from imagelist control to another control at runtime
Posted on January 5, 2009
1 2 3 4 5 | 'Controls - How to assign image from imagelist control to another control at runtime 'Each ListImage object exposes a Picture property, which lets you extract the 'image and assign it to another control, typically a PictureBox or Image control: Set Picture1.Picture = ImageList1.ListImages("Cut").Picture |