views:

110

answers:

4

I want to change the icon my binary has for my applications. The people I work with aren't technologically savvy and quite literally changed AppName.exe to CLICK ME.exe because they didn't know which icon to click...

Anyway, I figure an easy solution to this is to just make all of my applications for them have the same, bright icon so they will never be so confused again. I have no idea how to do this, and haven't found much help on google.

I hope I don't get dinged too hard on my rep, because I'm not even sure this is a programming question!

+2  A: 

If your app is in a sea of icons anyway, everything starts to look the same. I actually propose that you not bother with this, and create shortcuts on the desktop for them instead. They can even have a "Steve H's apps" folder on the desktop with all shortcuts there. When you deploy, have NSIS or IS or whatever installer you use create the shortcuts as well.

Dave
Hey whatdoya know? Three answers on how to do it and one better idea.
Joshua
+2  A: 

Open the properties for the application's project and go to the "Application" tab. In the "Icon and manifest" section, you can select an ico file to be the application icon. That should do it.

Daver
+1  A: 

You can right-click the project in Solution Explorer, select Properties and, in the displayed window, set the Icon to be used for your project output.

Jacob G
+4  A: 

Binary icon can be set from project properties, section "Application".

Joshua