Example #1
0
 private void Form5_FormClosing(object sender, FormClosingEventArgs e)
 {
     Form3 saveChoosing = new Form3();
     saveChoosing.Show();
     this.Dispose();
     this.Close();
 }
Example #2
0
 // Handles the form closing.
 private void backbutton_Click(object sender, EventArgs e)
 {
     Form3 saveChoosing = new Form3();
     saveChoosing.Show();
     this.Dispose();
     this.Close();
 }