changing the defualt language

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,

i'm wiriting in in C# and my windows is locolized meaning my default
language is not english, but i want that is some textboxes my language will
be english. is it better way to do it then chaging each char to it's english
char on the keyboard (meaning better then catching the event of the
KeyPress/Down/Up check which char is it and replace it)?

thanks
 
In the load_whatever, which you get by double clicking the
largest form, put textBox1.Text = "blabla"; etc.

You could create a class with the nomenclature, then
you can convert your application to another language
at the drop of a hat.
 
Back
Top