If you plan to use ResourceManager class, then you ought to have resources
in an assembly(normal or satellite). The usefullness of resourcemanager is
that it automatically loads the right resources based on the current thread
culture. You can use classes from System.Xml and work of resx files
directly, but remember that you need to bear the head ache of loading the
right resources (based on culture), basically redoing whatever
ResourceManager already provides...
--
HTH,
Manoj G [.NET MVP]
http://www15.brinkster.com/manoj4dotnet
"babylon" <(E-Mail Removed)> wrote in message
news:#Nt9e#(E-Mail Removed)...
> currently, I'm using
>
> this.rm = new ResourceManager("LanguageTest.LangPack",
> System.Reflection.Assembly.GetExecutingAssembly());
> mystring = rm.getString("XXX");
>
> can i leave the resx as is and load it @ run time?
>
> thx
>
>
>
>