Set an exe icon for my program

Danny picture Danny · Mar 6, 2010 · Viewed 92.5k times · Source

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 application in visual studio 2008?

But I can't find this "Resource View". I've looked everywhere in MVS08

How may I access Resource View and set the main icon for my application?

http://i46.tinypic.com/nd7m8z.jpg

Answer

CaptainBli picture CaptainBli · Sep 30, 2014

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.

  1. 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.

  2. 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.

  3. 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:

  1. Sometimes when running from Visual Studio you will not get the icon while debugging.
  2. You need to use an .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.