Can an ImageList get an image from another ImageList?
if yes, how?
Printable View
Can an ImageList get an image from another ImageList?
if yes, how?
yes,
ImageList2.ListImages.Add , , ImageList1.ListImages(1).Picture
add method of listimages collection creates a listimage with a reference to the picture you pass, which in this case is the first imagelists listimage items picture
thanks