I get an application error thrown when I close the program using as cancel button which all it does is close the form.

The error says: "Application appName.exe encountered a serious error and must shut down"

How do I start fixing it? It is not a thrown exception; no other info is given. What could it be and how do I fix it?

link|improve this question

58% accept rate
feedback

4 Answers

Here is what it was. My application has two forms - login and main form where all the action happens. The login form has two buttons (Login and Cancel). Login button logs user in, closes the login form and opens the main form. Cancel button just closes the login form. To close the form I simply used this.Close().

What was happening though is that I still needed to dispose of the login form explicitly by doing something like:

frmLogin.Dispose();
frmLogin = null;

before exiting the program (in my Program.cs)

So this solved it. I had to make sure that this was being done in both cases: when the user logs in as well as when they choose to not log in.

Crucial fact is that frmLogin is modal, hence Dispose() is not called automatically when closed.

link|improve this answer
This fix worked for me as well. I was getting this from a couple of exe's that were running modal. – JoelHess Apr 21 '11 at 12:36
feedback

This is typically caused by a system-level exception in your process space that managed code is unable to catch. Typically it happens when you P/Invoke out to native code and give it a bad pointer/parameter and it causes a native exception that is uncaught by the CLR.

link|improve this answer
thanks, makes sense – sarsnake Oct 2 '09 at 0:23
feedback

Look at some GUI components, DLLs or port resources. Some time is unclosed port, some time some GUI component (i deal with some List GUI component)

link|improve this answer
Issue has been fixed - i tracked down the error. Although it's been awhile and I don't remember what it was. – sarsnake Mar 22 '11 at 23:44
feedback

Throw a try/catch block around the Application.Run(...) line in your Program.cs, like this:

try
{
    Application.Run(new Form1());
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
}

The message you're seeing means there's a thrown exception that isn't being caught.

link|improve this answer
no actually, it was a system error. – sarsnake Sep 30 '09 at 0:12
I fixed it; although it was a bit tricky to identify where it happens – sarsnake Sep 30 '09 at 0:29
2  
Well, put it down as an answer and I'll vote it up. I'm curious to know what it was. – MusiGenesis Sep 30 '09 at 0:47
feedback

Your Answer

 
or
required, but never shown

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