Richard,
There are multiple international editions of PPC devices available. If
Japanese locale is not exposed as an option in Regional settings of your
device, your device is missing some information required to fully support
this culture. .NetCF supports the superset of cultures that can be exposed
by PPC devices. However, when creating CultureInfo() instance, runtime
checks if the culture you want is supported by the particular device you
run on. If this is not the case, you'll get PlatformNotSupportedException
at the runtime. If you run the same app on the device that supports
Japanese locale, the same code will work smoothly. I don't hink there is an
easy way to unsupported culture to the device, cince lots of
culture-specific information is to be added (fonts, numeric and datetime
format data, linguistic string comparison rules, etc.). You'll need to get
a new image for you device or test your app on Japanese edition of the
device.
- Roman
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Richard Kucia" <
[email protected]>
| Subject: How to add Japanese culture
| Date: Mon, 17 Nov 2003 01:08:36 -0500
| Lines: 16
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#
[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: 183.cleveland-16-17rs.oh.dial-access.att.net
12.87.134.183
| Path:
cpmsftngxa06.phx.gbl!cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP11.
phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:38785
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| I have a list of language codes that I'd like my PocketPC app to support.
| During initialization, I attempt to create a culture from each language
code
| in the list. For each success, I permit the user to request that language
by
| adding it to a menu.
|
| However, my PocketPC (Dell Axim) can not create a culture for CultureCode
| "ja" (Japanese):
|
| mCulture = New CultureInfo(CultureCode, False)
|
| Do I need to add something to my Axim to permit it to display Japanese?
| Thanks.
|
| Richard Kucia
|
|
|
This posting is provided "AS IS" with no warranties, and confers no rights.