private void button_introduction_Click(object sender, EventArgs e) { Introduction i = new Introduction(); i.Show(); this.Hide(); }
private void button_introduction_Click(object sender, EventArgs e) { try { Introduction i = new Introduction(); i.Show(); this.Hide(); } catch (Exception ee) { MessageBox.Show(ee.Message); } }