private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Cuestionario1 frm = new Cuestionario1(); frm.Show(); this.Hide(); }
private void ingresar_btn_Click(object sender, EventArgs e) { if(textBox1.Text == admi.nombreAdministrador && textBox2.Text == admi.contraseña) { AdministradorForm frm1 = new AdministradorForm(); frm1.Show(); this.Hide(); } else { Cuestionario1 frm = new Cuestionario1(); frm.Show(); this.Hide(); } }