private void button2_Click(object sender, EventArgs e) { TRANSACCIONES regresar = new TRANSACCIONES(); regresar.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { // ID y Contraseña se usan de la clase heredada USUARIO usuario.Id = this.textBox1.Text; usuario.Contraseña = this.textBox2.Text; if (usuario.logueoRecursador() == true) { MessageBox.Show("BIENVENIDO"); REGISTRO_RECURSAMIENTO registro = new REGISTRO_RECURSAMIENTO(); registro.BOLETA = textBox1.Text; registro.Show(); this.Hide(); } else if (usuario.loguepAdmin() == true) { MessageBox.Show("BIENVENIDO"); TRANSACCIONES transaccion = new TRANSACCIONES(); transaccion.Show(); this.Hide(); } else { MessageBox.Show("UPS, INGRESASTE MAL LA CONTRASEÑA"); } }
private void button2_Click(object sender, EventArgs e) { TRANSACCIONES menu = new TRANSACCIONES(); menu.Show(); this.Hide(); }