Localisation - satelite assemblies

F

fury

Hey guys n gals
I am using resource file to localise my user interface. But i have an
issue with it. When i use assembly key file does not become strong!!
and localisation does not work... When i take out the assembly key
file line of code the localisation works!!!

code:
assembly.cs
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile(@"..\..\Key\Key.snk")]
[assembly: AssemblyKeyName("")]

localisation:
private void LoadLocalizedText(ResourceManager rm)
{
this.NewString = rm.GetString("NewString");
}

i have tried as.exe to make my resource.dll satellite assembly strong
and put in the .fr folder... it still does not work..

i am using net 1.1 (sorry can not move to 2.0 as it is not allowed :
( )

Please help me solve this issue...

Cheers
sunny
 
S

sunny

Hey guys n gals
I am using resource file to localise my user interface. But i have an
issue with it. When i use assembly key file does not become strong!!
and localisation does not work... When i take out the assembly key
file line of code the localisation works!!!

code:
assembly.cs
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile(@"..\..\Key\Key.snk")]
[assembly: AssemblyKeyName("")]

localisation:
private void LoadLocalizedText(ResourceManager rm)
{
this.NewString = rm.GetString("NewString");

}

i have tried as.exe to make my resource.dll satellite assembly strong
and put in the .fr folder... it still does not work..

i am using net 1.1 (sorry can not move to 2.0 as it is not allowed :
( )

Please help me solve this issue...

Cheers
sunny

one more thing... i am using windows form
 
S

sunny

Hey guys n gals
I am using resource file to localise my user interface. But i have an
issue with it. When i use assembly key file does not become strong!!
and localisation does not work... When i take out the assembly key
file line of code the localisation works!!!

code:
assembly.cs
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile(@"..\..\Key\Key.snk")]
[assembly: AssemblyKeyName("")]

localisation:
private void LoadLocalizedText(ResourceManager rm)
{
this.NewString = rm.GetString("NewString");

}

i have tried as.exe to make my resource.dll satellite assembly strong
and put in the .fr folder... it still does not work..

i am using net 1.1 (sorry can not move to 2.0 as it is not allowed :
( )

Please help me solve this issue...

Cheers
sunny

please help guys!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top