Exemple #1
0
        private void button_introduction_Click(object sender, EventArgs e)
        {
            Introduction i = new Introduction();

            i.Show();
            this.Hide();
        }
Exemple #2
0
 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);
     }
 }