Exemplo n.º 1
0
        private void button_introduction_Click(object sender, EventArgs e)
        {
            Introduction i = new Introduction();

            i.Show();
            this.Hide();
        }
Exemplo n.º 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);
     }
 }