E
eBob.com
I'm writing an application which I'd like to work in either of two
languages. I'd like the end user to be able to switch between the two
languages at any point in time. But I have found MS documentation which
ways ...
Add the following code. In Visual Basic, it should go in the New function,
before calling the InitializeComponent function. ...
' Visual Basic
' Sets the UI culture to French (France).
Thread.CurrentThread.CurrentUICulture = New CultureInfo("fr-FR")
This sounds to me like the language is determined once and for all when the
application is initializing. I guess I should just believe the MS
documentation and move on. But I am hoping that the doc is wrong and the
language can be changed on the fly.
Thanks, Bob
languages. I'd like the end user to be able to switch between the two
languages at any point in time. But I have found MS documentation which
ways ...
Add the following code. In Visual Basic, it should go in the New function,
before calling the InitializeComponent function. ...
' Visual Basic
' Sets the UI culture to French (France).
Thread.CurrentThread.CurrentUICulture = New CultureInfo("fr-FR")
This sounds to me like the language is determined once and for all when the
application is initializing. I guess I should just believe the MS
documentation and move on. But I am hoping that the doc is wrong and the
language can be changed on the fly.
Thanks, Bob