How to use resource files for multiple languages?

  • Thread starter Thread starter Anderson Takemitsu Kubota
  • Start date Start date
A

Anderson Takemitsu Kubota

Hi!

I need to implement a functionality in my application for multiple
languages.
I imagine that I should use resource files, but I could not find any good
sample.
The user could choose in run time which language he desires.

Can anybody help me?

Thank you,

Anderson T. Kubota
 
Using localized resources sounds like a right solution for you.
You can provide localized resources in the form of satellite assemblies.
ResouceManager class provides rich functionality for loading different set
of resources based on device UI language. You can also specify the language
programmatically. You may want to check out the World Clock sample:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_evtuv/ht
ml/etsamworldclocksample.asp

For more information about Resourcemanager functionality please refer to:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfsystemresourcesresourcemanagerclasstopic.asp

- Roman

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Anderson Takemitsu Kubota" <[email protected]>
| Subject: How to use resource files for multiple languages?
| Date: Wed, 8 Oct 2003 17:41:29 -0300
| Lines: 15
| 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: <OTy#[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: 200.189.66.138
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:35449
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| Hi!
|
| I need to implement a functionality in my application for multiple
| languages.
| I imagine that I should use resource files, but I could not find any good
| sample.
| The user could choose in run time which language he desires.
|
| Can anybody help me?
|
| Thank you,
|
| Anderson T. Kubota
|
|
|
 
Back
Top