[Help] how to make a form Multilingual? [solved]
Another question xD.
I have 2 buttons 1 for Greek and 1 for English. I want when i click the English button the whole form changes from Greek to English...
i was thinking smthn about strings but i dont know how to use it ;s
Thanks in advance
~arcanan
Guess you'd have to hardcode a method to convert the text on all controls to whatever language. Never know, there may be an addon you can use.
.NET Framework provides diverse classes for Globalization. I developed this part for a project I am working on (simplex). I am on laptop atm. Will post code here as soon I'll get on desktop.
You must do something like:
[PSEUDOCODE]
ButtonEnglish_click :
Greektext = EnglishText
And to Greek to the reverse ^^
Like:
To English:
Label1.Text = "Login"
Button1.Text = "Close"
etc..
For each control in your form change the text when you click it..
Well I'm sure in VB2010 I saw a language form change thing I'm not sure how though
after 30min of hardcoding i manage to translate the 1st form xD
Alrighty, marked as solved so unless you have a better solution (Hassan....) please don't bother posting.