Is there a way in Windows Mobile to catch global unhandled exceptions? If not, are there any workarounds? Specifically, we have a thin client app and we want to globally catch exceptions generated when the network is unavailable (so we can present a friendly message and prompt the user to try again).

This catch statement doesn't fire when I throw an exception on button press

 try
 {
   Application.Run(new Login());
 }
 catch (Exception ex)
 {
   Debug.WriteLine("Caught " + ex);
 }
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can use an AppDomain.UnhandledException handler, but you cannot recover from it - you can only log it and shutdown the app. There's no way to have a global handler that is recoverable (at least in the CF) because there's no way to guarantee app state at that point.

link|improve this answer
feedback

Create a static void Main(), and add a try/catch that surround everything in the method body.

link|improve this answer
I had already tried that - see edits to original question - and it wasn't catching the error. – Jason Watts Jan 26 '11 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.