Click here to Skip to main content
15,884,473 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends , I have a new requirement in windows application. I will provide the difference languages dynamically to my application . If we can take the different langues in india. I want all languages related to india. How will do this task in windows application.

Please any one help me...
Posted
Updated 16-Jul-13 20:06pm
v3

1 solution

Read about Globalization and Localization. And: you will need someone translating all the menus and messages of your application - with the many languages of India, that can be quite an expensive task.
Another point is: how dynamic do you want the language selection to be? Configured in the .exe.config file and thus constant during execution of the program, or do you want to change the language during the program?
The former option is rather simple, just read the culture from that file and set the CurrentCulture and CurrentUICulture early (in static Main()) in the program and for every thread which gets started later on.
 
Share this answer
 
Comments
CH Guravaiah 17-Jul-13 3:00am    
Is there any other way.
Bernhard Hiller 17-Jul-13 3:05am    
No, it is a tedious and expensive job.
CH Guravaiah 17-Jul-13 3:19am    
ok. give me some idea about that task.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900