0
the code i sent u will do exactly what you requested, just add Application.Exit()
on any event that you request to exit the application on your form
0
Add the Application.Exit();
For every FormClosed
event handler. I mean - every form should implement this behavior...
0
I need to exit the application when the user clicks theclose button of each forms in my project ...
0
here is the code you wanted :
protected void button1_Click(object sender, System.EventArgs e) { // Populates a list box with three numbers. int i = 3; for(int j=1; j<=i; j++) { listBox1.Items.Add(j); } /* Determines whether the user wants to exit the application. * If not, adds another number to the list box. */ while (MessageBox.Show("Exit application?", "", MessageBoxButtons.YesNo) == DialogResult.No) { // Increments the counter ands add the number to the list box. i++; listBox1.Items.Add(i); } // The user wants to exit the application. Close everything down. Application.Exit(); }
|