5
Answers

To exit the application

Resmy Ravi

Resmy Ravi

15y
4k
1
I need to exit the application when the user clicks the close button.but what is happening in my project is that only when the user clicks the close button of login form(which is the startup form) application exists.But when user closes other forms project is in running mode.it does not breaks....how to solve this problem..PlZ help me.......
Answers (5)
0
Roei Bar

Roei Bar

NA 7.8k 0 15y
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
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y

Write Below Code for Every Form


private void Form1_FormClosing(object sender, FormClosingEventArgs e)

        {

            Application.Exit();

        }

0
Danatas Gervi

Danatas Gervi

NA 1.4k 0 15y

 

Add the Application.Exit();

 

For every FormClosed event handler. I mean - every form should implement this behavior...

0
Resmy Ravi

Resmy Ravi

NA 178 0 15y

I need to exit the application when the  user clicks theclose button of each forms in my project ...
0
Roei Bar

Roei Bar

NA 7.8k 0 15y
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();
}