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