I was able to convert PNG files into ICO files (thanks to http://superuser.com/q/62771/7878), but now I would like to create an icon "bundle" similar to system32.dll, which contains several individual icons. How can this be done?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You need to build a DLL that contains multiple icons as resources. That can be done from Visual Studio via these instructions. Other Windows development tools that can create a DLL should be able to do the same thing.

This could even been done with the resource compiler (rc.exe) that is included in the Windows SDK and manually creating a resource file.

link|improve this answer
Looks good. Thank you! – e.James Oct 22 '10 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.