Exemple #1
0
        private void ExtButton_Click(object sender, EventArgs e)
        {

            DialogResult result2 = MessageBox.Show("Are you sure you want to quit?", "Confirmation", MessageBoxButtons.YesNo);
            if (result2 == DialogResult.Yes)
            {
                Application.Exit();
            }
            else
            {
                Customer c = new Customer();
                c.Show();
                this.Close();
            }
        }
Exemple #2
0
 private void bckButton_Click(object sender, EventArgs e)
 {
     DialogResult result = MessageBox.Show("Do you really want to go back?", "Confirmation", MessageBoxButtons.YesNoCancel);
     if (result == DialogResult.Yes)
     {
         Dashboard d = new Dashboard();
         d.Show();
         this.Close();
     }
     else
     {
         Customer c = new Customer();
         c.Show();
         this.Close();
     }
 }
Exemple #3
0
 private void pictureBox3_Click(object sender, EventArgs e)
 {
     Customer c = new Customer();
     c.Show();
     this.Close();
 }