views:

15

answers:

1

Because all error messages are in german and google doesnt help me to find solutions for german error messages I want to change the language of visual web developer to english.

This shouldnt be too hard, but I just cant find a way to configurate the language. Google didnt help me either.

I would very much appreciate some help.

+1  A: 

You need to change the culture of your application:

http://msdn.microsoft.com/en-us/library/b28bx3bh(v=VS.100).aspx

Koistya Navin
Which can be done conditionally if you only need it for debugging.
Koistya Navin
Could you be more specific? The link doesnt really tell me where I exactly find that culture why I have to do it this way.
paskster
Exception messages are shown in the language (culture) in which your application is running. By default it is German I guess buy you can override it as shown in that example.
Koistya Navin
For example when application starts you can run this:Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
Koistya Navin