R
Robert Dufour
In my app I was using a sub main as the startup object and this code
Curlocale = My.Settings.UserUiLanguage
System.Threading.Thread.CurrentThread.CurrentUICulture = New
CultureInfo(Curlocale)
was OK to bring my next loaded form up in english or french depending on the
setting of the Curlocale (en or fr). But now I have to use frmMain as the
startup object because I need to use the application events. So I put the
same code in the applicationstart event. That no longer brings up my UI in
french when my curlocale is fr. It stays in the default english. How can I
get my frmMain to show up in french in this case?
Thanks for any help
Bob
Curlocale = My.Settings.UserUiLanguage
System.Threading.Thread.CurrentThread.CurrentUICulture = New
CultureInfo(Curlocale)
was OK to bring my next loaded form up in english or french depending on the
setting of the Curlocale (en or fr). But now I have to use frmMain as the
startup object because I need to use the application events. So I put the
same code in the applicationstart event. That no longer brings up my UI in
french when my curlocale is fr. It stays in the default english. How can I
get my frmMain to show up in french in this case?
Thanks for any help
Bob