vote up 0 vote down star

Hey All, I want a help. I have a window form application. Whenever I click on the "close" of the form, the application should itself close.

Can anyone help me.

Regards, Justin Samuel.

flag

71% accept rate
I am referring to the cross at the top of the window. – Justin Nov 5 at 11:34
You will have to tell us more details. As the answers show, the App normally closes when the Main Window coses. – Henk Holterman Nov 5 at 12:22
Sorry.... But actually I have a small form on whose button click a new form pops up. Now I am expecting to close the application as the user closes this second window(ie cross on top right is pressed). Note: The first form is hiding on opening the second form. – Justin Nov 5 at 13:00

6 Answers

vote up 1 vote down check

After your explanation:

In Form1, do something like:

  Form2 f2 = new Form2();
  f2.ShowDialog();
  this.Close();
  Application.Exit();

This is assuming Form2 can be shown Modal (Dialog), which I think is correct

link|flag
I have tried your solution but it is not working. I missed one point. In the second form I am starting a thread. Could this be any interfering point? – Justin Nov 5 at 13:43
Justin, Yes, if the thread is not a background thread it will keep your process running. – Henk Holterman Nov 5 at 14:19
Yes my thread had an open TcpClient object. All I needed was to close this object and it worked very fine!! Thanks Henk for the guidance! – Justin Nov 6 at 4:48
vote up 1 vote down

By your description, it sounds like you may have multiple forms in your application and one form is still running even if its's not visible. In this case, the close button, would close the form, but not exit the application.

You need to add an event handler for the Form_FormClosed event and then call Application.Exit() - Ideally, you could also handle the Form_FormClosing event if you want to give the user a dialog to ask if they really meant to close.

link|flag
vote up 0 vote down

I don't understand what you mean by the question, when you press the "X" at the top right of the window the application will close on it's on accord.

link|flag
Should not will - otherwise the question wouldn't have arisen... – Murph Nov 5 at 12:02
vote up 1 vote down

A Winforms application will exit automatically when the main form is closed. The main form is the form that is instantiated and passed to Application.Run method in the Main method of the application.

If the application process does not exit when this form is closed, something is preventing it from closing, such as a thread (that is not a background thread) that is performing some work.

link|flag
vote up 0 vote down

Maybe you are looking for the Application.Exit method.

link|flag
vote up 0 vote down

What is happening when you click close? When you say close do you mean the Cross at the top right or is this a command button close?

link|flag
Yes, I mean the cross at the top of the window. – Justin Nov 5 at 11:33
You shouldn't need to add anything, so I suspect something is intercepting your event - unless you've removed some auto code. Can you step through the put a breakpoint after the form load, start to step through so that the form is displayed. Then click the close button. Step through and see where the code goes. Also, try addign a new form and closing that - does it work? – Jim Nov 5 at 11:36

Your Answer

Get an OpenID
or

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