change icon in visual studio 2013 express?

closed account (9i3hURfi)
How would i change my icon for my application in visual studio 2013 express edition? ive looked around for a few hours and nothing i find seems to explain what i need
Last edited on
You need to make a resource file (e.g. myresourcefie.rc) and indicate the program's icon there. That way the linker knows to embed the icn data and write the executable in a way that Windows Explorer and other programs know that it is an icon and is is the main icon for the program.

For example, this could be your resources.rc:
 
MAINICON ICON DISCARDABLE "icon.ico"
Note that this should be in the Windows programming section. You can edit your topic (not your post) and move it there.
Last edited on
closed account (9i3hURfi)
ive made the .rc file, im just not sure where to put the .rc file i made and the icon that i have and what to do with them.

edit, nevermind i figured it out -_- im a idiot
Last edited on
Topic archived. No new replies allowed.