I\'m using Microsoft Visual Studio 2008 and I\'m trying to set an exe icon for my program.
I\'ve searched this site and found this: How do I set the icon for my appl
Ben had a good start to the question along with the help of Tymek, but you need to go to the next step. Once you have added your icon to your resources, you will also need a resource file .rc
in order to set the icon as the main icon of your application.
If you don't know if you already have a resource file, open your Resource View for the project: go to View->Resource View or Ctrl+Shift+E (in Visual Studio 2012/2013 View->Other Windows->Resource View or you can type Ctrl+W,R to get it to open and in 2015 Ctrl+Shift+E). Check to see if you have a MyProject->MyProject.rc. This is where you should Add
your icon. It should then create a resource file for you.
Now Ctrl+Shift+F to search the whole solution. Search for your icon filename so that you can open the actual .rc
file. When you do so it may suggest that you already have it open just accept.
Now find a place to add the following line to the .rc
file:
MAINICON ICON "foo.ico"
The next time you compile you can browse to the folder with the executable and see that you have the icon associated with the app and when you run it from there it will use the icon.
Note:
.ico
file. You cannot use a PNG image file for your executable's icon, it will not work. You must use .ico
. There are web utilities that convert images to .ico files. as quoted from bobobobo.Create a resources.h file under the project folder and the new resource folder will be created automatically. And resources.h can be found in the resource file below the source files.
Icon.ico file put in the project file or another location select the location folder.
Write the following code
#ifndef _resource_rc
#define _resource_rc
MAINICON ICON "icon.ico" //If you can set any name
#endif // _resource_rc
Save and rebuild this project. Happy coding
try to add a resource file to your project, then you should be able to open the rc file and add an icon
See resource.rc in your application.
#define IDI_ICON_1 102
#define IDI_ICON_2 103
// Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems.
IDI_ICON_1 ICON "icoMainApp.ico"
IDI_ICON_2 ICON "iconSecond.ico"
Right-click on your project, and select Add
-> Resource
. Then select Icon
and click New
. Edit your icon, and you should be good to go.