Hi there,
It's not so easy to change the language of an existing form, as you'll need to change and rename quite a bit. Easier is to create a new form and copy stuff over, like this:
1. Rename the old form to something like .old
2. Create a new form in the right language with the same name as the form you're converting
3. Copy over the markup
4. Copy over the code behind (using
http://converter.telerik.com for example)
5. Fix issues
Some of the issues you may run into are the handlers that are added in Code Behind for
VB, and to the mark up in C#. E.g. in C# you'll see OnClick="..." for a Button in Markup, in
VB you'll see ..... Handles Button1.Click on Code Behind. You manually need to resolve these issues.
Hope this helps,
Imar