kevinturtle Posted December 18, 2005 Posted December 18, 2005 The following is for a windows application. If I was to cause a button click to throw an exception i.e. private void button6_Click(object sender, System.EventArgs e) { //simulate a crash by throwing an exception throw new Exception ("Simulated Crash"); } where would I catch this other than in this function? I tried catching it in the Form's main fuction : static void Main() { try { Application.Run(new Form1()); } catch (Exception ex) { Console.WriteLine (ex.ToString()); } } but it seems like I can't catch it there. Quote
Wraith Posted December 18, 2005 Posted December 18, 2005 where would I catch this other than in this function? In any function which occurs before it on the stack, so anything that sits between the Main method and the event handler method. I tried catching it in the Form's main fuction : ... but it seems like I can't catch it there. That works, why do you think it doesn't. Quote
kevinturtle Posted December 18, 2005 Author Posted December 18, 2005 In any function which occurs before it on the stack, so anything that sits between the Main method and the event handler method. That works, why do you think it doesn't. The program is still crashing and I'm not catching the exception at all. Quote
Leaders snarfblam Posted December 18, 2005 Leaders Posted December 18, 2005 Take a look at these two events: 'Unhandled exception in AppDomain (I don't think this will catch an exception before it crashes the GUI) AppDomain.CurrentDomain.UnhandledException 'Unhandled exception in GUI thread Application.ThreadException There is usually nowhere between Application.Run and the button click event handler to attatch an exception handler. There will be nothing on the stack between the two besides non-user code, making it hard to catch an exception and keep your app from crashing. Quote [sIGPIC]e[/sIGPIC]
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.