views:

110

answers:

2

Hi Everyone,

I have created an application in Compact Framework 2.0

This application is being used in many various counties and cultures.

My Issue is that any and all exceptions are logged, but they are appearing in the culture of the device, in some cases this means i am unable to read them.

Any help or suggestions will be appreciated

Thanks

A: 

check this: http://stackoverflow.com/questions/197127/prevent-exception-messages-from-being-translated-into-the-users-language

twk
that will not work on the compact-framework
Jaguar
+3  A: 

See this link for details.

System.SR.dll assembly, which contains the error strings, is not present in the .NET CF redistributable, so you are probably logging a message that it says that a resource assembly isn't found (in a number of different languages). You could install the English assembly in users phones, but this is not recommended. You need to find a different debugging method and not rely on exception messages in users phones.

kgiannakakis
blargh couldn't make it work on CF2.0
Jaguar