Hi,
Following excerpt taken from MSDN site will fix your error:
Before you begin to localize an application's Windows Forms forms, you
should decide whether you want to use Visual Studio .NET or Winres.exe as the
localization tool. The localized .resx files produced by each tool are not
interchangeable. Therefore, after you have started to localize with one tool,
you cannot switch to the other tool.
Due to the differences in the content of the .resx files produced by
Winres.exe and Visual Studio .NET, Winres.exe cannot open a .resx file that
was previously localized for a target culture using Visual Studio .NET. For
example, Winres.exe can open the neutral file project1.resx, but it cannot
open the localized file project1.fr-FR.resx generated by Visual Studio .NET.
Likewise, a .resx file that was localized for a target culture using
Winres.exe is not compatible with Visual Studio .NET. If you choose to use
Winres.exe as your localization tool, you must convert your localized .resx
files into .resources files using the Resource File Generator (Resgen.exe).
Then use either the Assembly Linker (Al.exe) or the C# Compiler (Csc.exe) to
compile the .resources files into satellite assemblies. For more information
on this process, see Creating Satellite Assemblies.
Thanks and Regards,
manish bafna
> I have created a spanish resx file in VS, but when I attempt to load the
> spanish resx file in Winres.exe I get the following error:
[quoted text clipped - 10 lines]
>
> Jared
Jared - 11 Dec 2006 17:54 GMT
I read that message as well. But later in the same article, it states that
winres 2.0 is compatible with Visual Studio. This allows one to edit the
resource file in either winres 2.0 or visual studio.
The article states:
"However, with version 2.0 of Winres.exe, the Visual Studio File Mode (VSFM)
was added. As the name implies, a resource file saved in this compatibility
mode can be edited with either tool."
> Hi,
> Following excerpt taken from MSDN site will fix your error:
[quoted text clipped - 47 lines]
>>
>> Jared