private void btnSalir_Click(object sender, EventArgs e) { FrmAdmin log = new FrmAdmin(); log.Show(); FrmRCuenta cerrar = new FrmRCuenta(); this.Hide(); }
private void btnRVincular_Click(object sender, EventArgs e) { FrmVincular log = new FrmVincular(); log.Show(); FrmAdmin cerrar = new FrmAdmin(); this.Hide(); }
private void btnSalir_Click(object sender, EventArgs e) { FrmVincular log = new FrmVincular(); this.Hide(); FrmAdmin log1 = new FrmAdmin(); log1.Show(); }
private void btnRCliente_Click(object sender, EventArgs e) { FrmRCliente log = new FrmRCliente(); log.Show(); FrmAdmin cerrar = new FrmAdmin(); this.Hide(); }
public void btnIngresar_Click(object sender, EventArgs e) { //MessageBox.Show(a); String nombre = txbUsuario.Text; String clave = txbContraseña.Text; String tipo = "admin"; string EspacioEnBlanco = ""; if (txbUsuario.Text == EspacioEnBlanco || txbContraseña.Text == EspacioEnBlanco) { if (txbUsuario.Text == EspacioEnBlanco) { MessageBox.Show("No Ingreso nada En El Campo Usuario"); } if (txbContraseña.Text == EspacioEnBlanco) { MessageBox.Show("No Ingreso nada En El Campo Contraseña"); } } else { if (tipo == "admin") { this.oleDbDataAdapter1.SelectCommand.CommandText = "SELECT * FROM Usuarios WHERE Usuario = '" + nombre + "' and Contraseña ='" + clave + "' and TipoPersona ='" + tipo + "';"; this.oleDbConnection1.Open(); this.oleDbDataAdapter1.SelectCommand.Connection = oleDbConnection1; OleDbDataReader reader = this.oleDbDataAdapter1.SelectCommand.ExecuteReader(); Boolean ExistenciaRegistro = reader.HasRows; if (ExistenciaRegistro) { while (reader.Read()) { FrmAdmin log = new FrmAdmin(); log.Show(); Login cerrar = new Login(); this.Hide(); } } else { this.oleDbConnection1.Close(); tipo = "user"; } } if (tipo == "user") { this.oleDbDataAdapter1.SelectCommand.CommandText = "SELECT * FROM Usuarios WHERE Usuario = '" + nombre + "' and Contraseña ='" + clave + "' and TipoPersona ='" + tipo + "';"; this.oleDbConnection1.Open(); this.oleDbDataAdapter1.SelectCommand.Connection = oleDbConnection1; OleDbDataReader reader = this.oleDbDataAdapter1.SelectCommand.ExecuteReader(); Boolean ExistenciaRegistro = reader.HasRows; if (ExistenciaRegistro) { while (reader.Read()) { FrmUsuario log = new FrmUsuario(nombre); log.Show(); Login cerrar = new Login(); this.Hide(); } } else { this.oleDbConnection1.Close(); this.oleDbDataAdapter1.SelectCommand.CommandText = "SELECT Contraseña FROM Usuarios WHERE Usuario = '" + nombre + "';"; this.oleDbConnection1.Open(); this.oleDbDataAdapter1.SelectCommand.Connection = oleDbConnection1; OleDbDataReader reader1 = this.oleDbDataAdapter1.SelectCommand.ExecuteReader(); Boolean ExistenciaRegistro1 = reader1.HasRows; if (ExistenciaRegistro1) { while (reader1.Read()) { MessageBox.Show("Contraseña Incorrecta."); } } else { MessageBox.Show("Usuario no Existe"); } this.oleDbConnection1.Close(); } } } }