private void button3_Click(object sender, EventArgs e) { seleccionmodulos s = new seleccionmodulos(); s.Show(); this.Hide(); }
private void button2_Click(object sender, EventArgs e) { this.Close(); seleccionmodulos s = new seleccionmodulos(); s.Show(); }
private void buttoningreso_Click(object sender, EventArgs e) { MySqlCommand ingreso = new MySqlCommand(); MySqlConnection conecta = new MySqlConnection(); ingreso.Connection = conexion.obtenerconexion(); ingreso.CommandText = ("select nombre from usuario where idusuario = '" + textusuario.Text + "'and contrasena ='" + txtcontra.Text + "' "); MySqlDataReader leer = ingreso.ExecuteReader(); if (leer.Read()) { seleccionmodulos s = new seleccionmodulos(); s.labelusuario.Text = textusuario.Text; this.Hide(); s.ShowDialog(); } else { MessageBox.Show("Usuario o Contraseña incorrectos"); } }