Example #1
0
 private void back_Click(object sender, EventArgs e)
 {
     var confirmResult = MessageBox.Show("Are you sure ??",
                 "Confirm !!",
                 MessageBoxButtons.YesNo);
     if (confirmResult == DialogResult.Yes)
     {
         GetStarted gs = new GetStarted();
         this.Hide();
         gs.Show();
     }
     else
     {
         return;
     }
 }
Example #2
0
 private void button6_Click(object sender, EventArgs e)
 {
     GetStarted gp = new GetStarted();
     this.Hide();
     gp.Show();
 }