0

Im creating a project in Local langauage Hindi(Indian National Language). I need all the options to be in Hindi only. When i click on Close, there should be message box with the options like Yes, No, Cancel in Hindi Language.

My solution for this is to create a fixed sized form with labels and buttons in local language and giving return values for buttons.

Is this the correct way or is there any other method to make it bettter? Please suggest me a Best Solution for this!

A simple code illustration will be better!

Chandra Eskay
  • 2,163
  • 9
  • 38
  • 58
  • 1
    Not sure you need to create a new dialog - you may just need to use .Net internationalization methods and make the current culture point to "hi" http://msdn.microsoft.com/en-us/goglobal/bb896001.aspx. However not tried this ever... give it a shot. – Gishu Apr 08 '11 at 04:29
  • @Gishu Not much information is there in it :( – Chandra Eskay Apr 08 '11 at 04:33
  • possible duplicate of [Best practice to make a multi language application in C#/WinForms?](http://stackoverflow.com/questions/119568/best-practice-to-make-a-multi-language-application-in-c-winforms) – Gishu Apr 08 '11 at 04:39

1 Answers1

2

You may want to check out this post: Best practice to make a multi language application in C#/WinForms?

It Will teach you all about localisation. Have fun :)

Community
  • 1
  • 1
Greg Randall
  • 811
  • 7
  • 14