How to remove images from imagelist control at runtime
Posted on January 4, 2009
1 2 3 4 5 6 | 'Controls - How to remove images from imagelist control at runtime 'You can remove individual ListImage objects (added either at design time or at 'run time) by using the Remove method of the ListImages collection. 'You can use a numerical index or a string key to remove the associated image. ImageList1.ListImages.Remove "Cut" |