Csharp

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

Re: changing the defualt language

Adrian

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.





"Gidi" <shnapsi@hotmail.com.dontspam> wrote in message
news:4B739582-3FFF-4E21-BF83-CA06F1FD3274@microsoft.com...
> 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