Extract .EXE(or DLL) file's Icons & other Resources
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi. How can I Extract .EXE(or DLL) file's Icons & other Resources.in Runtime and without other applications Iman Ghasr-e-fakhri
-
Hi. How can I Extract .EXE(or DLL) file's Icons & other Resources.in Runtime and without other applications Iman Ghasr-e-fakhri
With the samples that come with VC6.0 there is a sample application called IconPro which shows how to extract icons from exe and dll files. To use this to get other resources requires searching for example RT_BITMAP (for bitmaps) instead of RT_ICON. The main functions to extract the resources are FindResource LoadResource LockResource FreeResource Hope this helps:)