Can anybody send how to use imageList tool? How can we extract the pictures one by one?
Thank you
Thank you
myImageList.Images["ImageKey"]
if (i < imageList1.Images.Count) { pictureBox1.Image = imageList1.Images[i]; i++; } else { i = 0; }
Comment