I want the MessageBox to have the buttons use french, but can't make it work. I'm trying with Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR") before showing the message. What's wrong and what's the right way to do it?
Did you define a resource file for French culture? Also did you define the strimgs that are to be used on the Buttons in the MessageBox in the resource file?
None
0 Points
87 Posts
Globalization question
May 27, 2005 01:08 AM|wannabe|LINK
I want the MessageBox to have the buttons use french, but can't make it work. I'm trying with Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR") before showing the message. What's wrong and what's the right way to do it?
Thanks
None
0 Points
14 Posts
Re: Globalization question
May 27, 2005 07:10 AM|Deepti Kalakonda|LINK
MCAD (.NET)
Member
10 Points
904 Posts
Re: Globalization question
May 27, 2005 05:59 PM|shravan79|LINK
[code]
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");
[/code]
hth