I have developped and tested a multilingual application which is
running fine. When testing from inside .NET I created a drop down menu
where I can choose the language allowing changing the language of the
User Interface. I am storing this data in the registry so when I
launch my application it is being loaded with that settings. This is
working fine when working from inside VB.Net. Running the actual Exe
it seems that my language settings are overwritten by the language of
the Net Framework. Could it be true ?

If it is true is there a way to overwrite this ?


Jean-Luc
www.corobori.com

Re: Running a VB.Net application in a language different than the Net FrameWork by Carl

Carl
Mon Apr 19 21:12:29 CDT 2004

Sounds like your accessing a different part of the registry when your running the .exe standalone? Where in the
registry are your keys located? Change a key from your exe and use regedit to make see the change.

--
...Carl Frisk
Anger is a brief madness.
- Horace, 20 B.C.
http://www.carlfrisk.com


"Corobori" <jlpraz@corobori.com> wrote in message news:3b9f1fe3.0404181904.456fd4e9@posting.google.com...
> I have developped and tested a multilingual application which is
> running fine. When testing from inside .NET I created a drop down menu
> where I can choose the language allowing changing the language of the
> User Interface. I am storing this data in the registry so when I
> launch my application it is being loaded with that settings. This is
> working fine when working from inside VB.Net. Running the actual Exe
> it seems that my language settings are overwritten by the language of
> the Net Framework. Could it be true ?
>
> If it is true is there a way to overwrite this ?
>
>
> Jean-Luc
> www.corobori.com


Re: Running a VB.Net application in a language different than the Net FrameWork by jlpraz

jlpraz
Mon Apr 19 22:18:41 CDT 2004

I guess I was too tired ! This post should be erased, what I said was wrong.

My problem was that I didn't include the resource file in my installation process

Re: Running a VB.Net application in a language different than the Net FrameWork by Carl

Carl
Tue Apr 20 08:14:53 CDT 2004

Even though we were going in different directions I hope I may have jogged your pursuit to the solution in the right
direction. Yeah a missing resource file would behave as advertised:)

--
...Carl Frisk
Anger is a brief madness.
- Horace, 20 B.C.
http://www.carlfrisk.com


"Corobori" <jlpraz@corobori.com> wrote in message news:3b9f1fe3.0404191918.11f360d8@posting.google.com...
> I guess I was too tired ! This post should be erased, what I said was wrong.
>
> My problem was that I didn't include the resource file in my installation process