Replacing the Default MFC Application Icon
Many new MFC programmers wonder how to 'replace' the default icon rather than to change or edit in the resourc editor. Here are two simple ways to do this (actually one method but two versions).
1. There is an ICON statement in the resource (.rc) file that causes the resource
compiler to include the icon in the program's resources. The default icons for MFC
projects are placed in ../res folder. To replace these icons we need to edit rc file
and supply new icons for the existing ones. Proceed as follows:
(i). copy the new icon file in .../res folder. This step is not essential but its better to put all the resources in one folder.
(ii). Select File -> Open and File Open Dialog popups. Select the rc file and change the 'open as' combo box to 'text' (which is 'auto' by default) in the File Open Dialog box. Now Look for the ICON statement in rc file, which should look like:
////////////////////////////////////////////////////// // // Icon // // Icon with lowest ID value placed first to ensure // application icon remains consistent on all systems. IDR_MAINFRAME ICON DISCARDABLE "res\\Project.ico" IDR_DEVICETYPE ICON DISCARDABLE "res\\ProjectDoc.ico"Next simply change the concerned file name with new one, e.g:
IDR_MAINFRAME ICON DISCARDABLE "res\\NewIcon.ico"Now build the project and the new icon should show up.
2. The second way is the short-cut version of the first. Instead of editing the rc file just rename the new icon to the same old icon name and copy onto it. However if you build your project, the same old (default) icon will be shown though it does not even exist on the disk now! This is because the resource compiler does not detect any changes in rc file and hence it doesn't actually recompile the rc file (unless some change is introduced into it). As a result the program shows the same old icon which was added to it in the last compilation. Hence to take the effect, just recompile the rc file. It can simply be done by opening it as a text file (as in method 1), click in the file and compile (Ctrl+F7).
Note: Its generally not recommended to manually edit rc file, however there is no harm with the above procedures and can be used without any fear.

Comments
MFC-Icons-ID
Posted by Legacy on 12/29/2002 12:00amOriginally posted by: McBen
Simply take the Icon Resources IDs:
AFX_IDI_STD_FRAME
and
AFX_IDI_STD_MDIFRAME
Reply
How to assign different icons for different versions of a program
Posted by Legacy on 02/22/2002 12:00amOriginally posted by: Keivan
Hi ,
I have written a program and used preprocessor definition to build two different versions of it. The thing that I want to have is: each of those version has its own icon. How can I do this? Actually I should mention that I edited resource file manually and added #ifdef directive for it in ICON section and it worked. But the problem is after I make any change in resource file and compile it, resource compiler removes #ifdef directives from resource file and I have to add them again.
Any idea?
Thanks
Keivan
ReplyThanks.
Posted by Legacy on 08/09/2001 12:00amOriginally posted by: Li Baoping
A very good reminder for me.
Reply