Creating a ".rc" file in Visual Studio 2010 Express

13,394

The Visual Studio Express 2010 does not have the ability to edit resource files. Take a look at this MSDN page it is the listing of which features each version of VS 2010 contain.

From above link. There is no resource editor in the Express Version.

This link discusses a way to add a resource editor to Visual Studio Express.
Also take a look at this MSDN Forum Link It has some tips and links to external editors.

Share:
13,394
Admin
Author by

Admin

Updated on June 08, 2022

Comments

  • Admin
    Admin almost 2 years

    I'm trying to learn game programming. I am using Microsoft Visual Studio 2010 Express on Windows Vista. I want to know how to create a resource file (.rc). The microsoft website gives some fairly ambiguous instructions on creating one. http://msdn.microsoft.com/en-us/library/sxdy04be.aspx. If I go to my Solution explorer, right click and select Add New Item, the IDE does not give a .rc file as one of the options. It only gives me a .cpp, .h and windows form as options. I don't know what to do. I just can't figure out where i'm goofing up. I'd be very grateful if someone could point me in the right direction.

    Thanks a lot Merry christmas!

  • Cody Gray
    Cody Gray over 12 years
    Your answer doesn't already link to it, so I feel obligated to do so myself. I highly recommend ResEdit as a free (as in beer) resource editor for Win32. I don't know if it integrates with Visual Studio, but it's a fantastic application. Obviously you'll need the Platform SDK (which may or may not be included with VS Express nowadays), but you should download that anyway.
  • jamesmortensen
    jamesmortensen over 11 years
    Adding link to ResEdit, which allowed me to create a rc file so I could include an ICO file in a VS 2010 Express project. +1