Exemplo n.º 1
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (label14.Text.Equals("GUEST!"))
     {
         SignIn si = new SignIn(this);
         si.Show();
     }
     else
     {
         button2.Text = "SignIn";
         label14.Text = "GUEST!";
         button1.Show();
         button4.Hide();
     }
 }
Exemplo n.º 2
0
 public ValidateCode(SignIn si)
 {
     this.si = si;
     InitializeComponent();
 }