vote up 0 vote down star

I am trying to view a .resx file in the resource editor in visual studio, but visual studio is unable to open it with this program. I right clicked on the .resx file and then chose openwith. It gave me a list of different program I could choose to open my .resx file with includeing XML Editor, Html Editor, Binary Editor and Resrouce Editor. I chose the Resource Editor and clicked ok. After Visual studio gave me an error message stating: "The file cannot be opened with the selected editor. Please chose another editor." If you could help me I would appreciat it. Thanks.

flag

0% accept rate
The Resource file is not corrupt. – dban10 Jul 7 at 16:56
The .resx file opens up in note pad fine. – dban10 Jul 7 at 16:57
By "corrupt" I don't mean that the file can open in notepad. I mean that the file structure itself doesn't conform to the .resx spec. Which might have happened if it was hand edited or edited in a program that doesn't really support that format.. Like notepad. – Chris Lively Jul 7 at 16:58

4 Answers

vote up 1 vote down

If you're using an Express edition, may that (the ability to edit a compiled resource) is one of the features that's disabled in Express editions.

link|flag
vote up 1 vote down

The .resx file is an XML format file. The .resources file format is a binary format.

Since projects in .NET programming languages do not use resource script files, you must open your resources from Solution Explorer.

The following article describes opening resource files in Visual Studio and specifies a .rc file format.

Mads Kristensen wrote a .NET Resource Editor for .resx files.

Another alternative (especially if you are using Express and cannot edit for that reason) is the Canaware DevAssistant program. It provides a .NET resource editor.

link|flag
vote up 0 vote down

As I understand it .resx is just a textfile, so should be able to open it in notepad to check if it is ok (not corrupt).

link|flag
vote up 0 vote down

Try creating a new one from the IDE and opening that to see if it's an actual VS problem or if your resource file is corrupted somehow. I'm going to guess it's the latter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.