I don't think this is possible in Compact.
CurrentCulture is not supported (if I remeber correctly it will not
compile).
You can use a set CultureInfo in things like DateTime :
CultureInfo ci_CultureInfo = new CultureInfo("el");
s_BottomLabels = string.Format("{0} :
{1}",s_Today,dt_Today.ToString("D",ci_CultureInfo));
Would show the Long Date in Greek on a German mashine.
I am preparing a DateTimePicker with CultureInfo support and the demo reads
in all supported CultureInfo's
on the Mashine and most Asian/Arab cultures are not supported (at least on
my Pocket PC 2002 German Mashine) - works on Desktop.
A preview as Desktop/Compact .EXE can now be downloaded at
http://www.mj10777.de/NETFramework/A...orer/index.htm
Once I get the Control working in the Toolbox the source will be supplied.
It would interest me if there are Mashines that support Asian Cultures and
if they show up in the Demo (NetDtpExplorer).
Mark Johnson, Berlin Germany
(E-Mail Removed)
"Lina" <(E-Mail Removed)> schrieb im Newsbeitrag
news:36B44D3A-3BF1-4A6D-83A1-(E-Mail Removed)...
> Hi there,
>
> I would like to know how to change CultureInfo.CurrentCulture to specific
culture like ("zh-TW"), in .NET I use Thread.CurrentThread.CurrentCulture =
CultureInfo.CreateSpecificCulture("zh-TW") to let it work. Pls advise!
>
> Lina