Grubber wrote:
When I try to edit resource file (*.rc) I get this error: "Resource Editing in not supported on the Visual C++ Express SKU". Does that mean there is no way to get the resource editor to work in VC++ Express?
Sadly, Express Edition of VC++ doesn't include resource editor. This is the most important drawback of ExEd for C++ WinAPI developers. If you find good third-party resource editor, you can configure VC++ to use it for editing of .rc files.
sylt wrote:
From the 'solution explorer', right-click the *.rc file and select 'open with..', then select 'source code (text) editor' from the list.
It seems that *.rc files can't be added (or displayed) to a solution :(.
Grubber wrote:
It seems that *.rc files can't be added (or displayed) to a solution :(.
Project > Add New Item
Select 'C++ File' and enter name like new.rc (with .rc extension). File will be added as a resource.
To display resource file in Visual Studio: right click on .rc file in Solution Explorer, select Open With, highlight 'Source Code (Text) Editor'. You can make this a default action by clicking 'Set as Default' button.
This is with source code, written in MASM, requires the MASM32 package installed.
You can configure ResEd to "generate" (create) the standard "resource.h" file, the way the standard visual studio does.