void ButtonSeleccionarClick(object sender, EventArgs e) { puntoDeVenta venta = new puntoDeVenta(); venta.Show(); this.Hide(); }
void btnVneta_Click(object sender, EventArgs e) { puntoDeVenta pv = new puntoDeVenta(); pv.lblUser.Text = label2.Text; pv.Show(); this.Hide(); }
void BtnAceptarClick(object sender, EventArgs e) { //accción tempotal para probar conexion //conexion.ObtenerConexion(); MySqlCommand codigo = new MySqlCommand(); MySqlCommand codigoAdmin = new MySqlCommand(); MySqlConnection cn = new MySqlConnection(); codigo.Connection = conexion.ObtenerConexion(); codigoAdmin.Connection = conexion.ObtenerConexion(); codigo.CommandText = ("select * from usuarios where NICKNAME = '" + txtUsuario.Text + "' and PASSWORD = '******' "); codigoAdmin.CommandText = ("select * from admins where NICKNAME = '" + txtUsuario.Text + "' and PASS = '******' "); MySqlDataReader leer = codigo.ExecuteReader(); MySqlDataReader leerAdmin = codigoAdmin.ExecuteReader(); if (leer.Read()) { MessageBox.Show("Bienvenido al sistema " + txtUsuario.Text + "!"); puntoDeVenta venta = new puntoDeVenta(); venta.Show(); this.Hide(); } else if (leerAdmin.Read()) { MenuAdmi ma = new MenuAdmi(); MessageBox.Show("Bienvenido al sistema Administrador!"); ma.Show(); this.Hide(); } else { MessageBox.Show("Usuario o contraseña incorrectos!"); } }