Martin Kack

Martin Kack

  • NA
  • 1
  • 0

Globalization

Sep 9 2005 5:13 AM
Hi!

I am writing an application that will be used for the Swedish market, but I also want people who have
their national settings set to other languages to use the program without problems.

I sweden we use "," as number decimal separator instead of "." so here is one problem.
Can I change the CultureInfo in some way so when user with english settings inputs "." it will be
treated as ","?
Perhaps the informatin visually should show "." but internally be treated as "."

I have just had a look at
System.Globalization.CultureInfo.CurrentUICulture
and:
System.Globalization.CultureInfo.CurrentCulture


Can I set CurrentUICulture to English and CurrentCulture to Swedish and that would solve my
problems or how does it work?


Martin