VC++ 2005 ImageList alternative...

homercles337

Diamond Member
Dec 29, 2004
6,340
3
71
I am still tying to learn this IDE and wanted to load some images into an ImageList. Whelp, it turns out that ImageList does not support vector images (emf). So, now i need an alternative because i want to display potentially hundreds of images randomly (this is for an experiment). Im really doing this to learn this IDE and know that there are plenty of other ways to do this (for example, randomly indexing through my directory files), but something with forms or containers is preferred.

Edit: Meh, i ended up using Directory::GetFiles() and adding the "images" directory to the target file system. Im not really sure how this will scale though.