How do I make my application always use English when displaying win32/.net exceptions messages?
I got this message, it looks like someone used babelfish to translate
How do I make my application always use English when displaying win32/.net exceptions messages?
First of all, don't show win32/.net exception messages to users. You should handle exceptions rather than showing them to user.
By default exception messages will be shown in current's UI language (if appropriate language pack is installed, otherwise they fallback to English). You can change exception messages changing Thread.CurrentThread.CurrentUICulture property, however it will affect the whole GUI of your app.