Hi Ben,
Have you tried the function AppDomain.CreateInstance ? There are 3
signatures for that function, and one takes the culture attribute as a
parameter.(http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemAppDomainClassCrea
teInstanceTopic3.asp?frame=true)
Please take a look also at the remark from that topic.
It's unclear whether passing the culture will only help in parsing the
arguments, or if the satellite assemblies will be loaded as expected, but it
might be worth a try.
Otherwise, from your code, it looks like you're forcing the resources to be
loaded from the main assembly anyway, because you hard-coded the DLL name to
look for. So why would the resourcemanager class look for another assembly in
this case ? Have you tried Dim a.s as [Assembly] =
[Assembly].LoadFile(".\de-AT\test.resources.dll")? If that works, and you end
up being able to only load de-AT resources, then you'll have to build that
path string yourself.
Please let us know if this helps.
Lynne, Masayoshi, Olivier.
lynnedong@hotmail.com, msmayada@hotmail.com, olivierg@online.microsoft.com
-Please do not send email directly to this alias. This alias is for
newsgroup purposes only
-This posting is provided “AS IS” with no warranties, and confers no rights.
> Hi all,
>
[quoted text clipped - 7 lines]
> Thanks
> Ben.