app.config Globalization??

E

eval

Hi all,

is there any way to tell the program to execute under any given
CultureInfo setting, using the app.config file? Similar to the asp.net
web.config setting <globalization> tag, but for WIndows Forms????

I know how to set the CUltureInfo of the current thread, but have no
idea on how to set it at app.config level

Any ideas?


--eval
 
M

Marc Scheuner [MVP ADSI]

is there any way to tell the program to execute under any given
CultureInfo setting, using the app.config file?
I know how to set the CUltureInfo of the current thread, but have no
idea on how to set it at app.config level

Put this entry into your app.config file:

<configuration>
<appSettings>
<add key="CultureToUse" value="de-CH" />
</appSettings>
</configuration>

And then access it in your main app:

string sCulture = ConfigurationSettings.AppSettings["CultureToUse"];

and create the culture info from it:

CultureInfo.CreateSpecificCulture(sCulture);

and then go on and use it!

Hope this helps

Marc
================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top