Hi,
whe you get string or object from you satellite assembly send cultureinfo
Threading.Thread.CurrentThread.CurrentCulture = New
Globalization.CultureInfo("en")
Threading.Thread.CurrentThread.CurrentUICulture = New
Globalization.CultureInfo("en-US")
Dim ret As String = String.Empty
Dim rm As Resources.ResourceManager = New
Resources.ResourceManager("Lab3-CS-Starter-1.labels",
System.Reflection.Assembly.GetExecutingAssembly()) 'MyAssembly)
'System.Reflection.Assembly.GetExecutingAssembly())
rm.IgnoreCase = True
ret = rm.GetString(<Resource ID>,
Threading.Thread.CurrentThread.CurrentUICulture)
rm = Nothing
If ret Is Nothing Then ret = String.Empty
MessageBox.Show(ret)
> Hi,
> I am also struggling with resource files. I created a web application and
[quoted text clipped - 44 lines]
> >
> > Kindly, Stefan
Michael (michka) Kaplan [MS] - 18 Dec 2004 19:43 GMT
"Alfredo Delgadillo" <AlfredoDelgadillo@discussions.microsoft.com> wrote...
> Threading.Thread.CurrentThread.CurrentCulture = New
> Globalization.CultureInfo("en")
You should be very careful here -- CurrentCulture is used for formatting and
parsing, which will not work with neutral cultures like "en".
> Threading.Thread.CurrentThread.CurrentUICulture = New
> Globalization.CultureInfo("en-US")
CurrentUICulture, on the other hand, *can* be neutral.

Signature
MichKa [MS]
NLS Collation/Locale/Keyboard Technical Lead
Globalization Infrastructure, Fonts, and Tools
Microsoft Windows International Division
This posting is provided "AS IS" with
no warranties, and confers no rights.