private void PictureBox6_Click(object sender, EventArgs e) { Menu_maestros m = new Menu_maestros(); m.Show(); this.Hide(); }
public void login(string user, string pass) { try { conn.Open(); SqlCommand cmd = new SqlCommand("SELECT * FROM Maestros WHERE Alias_maestro = @usuario AND Clave_maestro = @clave", conn); cmd.Parameters.AddWithValue("usuario", user); cmd.Parameters.AddWithValue("clave", pass); SqlDataAdapter sda = new SqlDataAdapter(cmd); DataTable dt = new DataTable(); sda.Fill(dt); if (dt.Rows.Count == 1) { MessageBox.Show("Bienvenido, maestro", "Hecho", MessageBoxButtons.OK, MessageBoxIcon.Information); Menu_maestros m = new Menu_maestros(); m.Show(); this.Hide(); } else { MessageBox.Show("Usuario o clave incorrectos", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch (Exception error) { MessageBox.Show("Usuario o clave incorrectos", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { conn.Close(); } }