I have a VB 6.0 application which contains some images inside a imagelist control. I want to know where these images get stored in the system (because I want to use these images in another application and I don't have the images separately in the system).
So, the only way is to take the images from Visual Basic 6.0 project. Do we have anything like resource folder similar to .Net?
Microsoft Windows Common Controls 5.0 or 6.0
Form1
ImageList1
Use this code
Dim lIdx As Long
For lIdx = 1 To ImageList1.ListImages.Count
SavePicture ImageList1.ListImages(lIdx).Picture, "C:\TEMP\img" & lIdx & ".bmp"
Next