private void btnLogin_Click(object sender, EventArgs e) { if (this.txtPin.Text == "") { lblError.Visible = true; lblError.ForeColor = Color.DarkOrange; lblError.Text = "¡COLOQUE UN PIN PARA CONTINUAR!"; this.txtPin.Focus(); } else { uHelper = ManejoUsuario.Autentificar(txtPin.Text); if (uHelper.esValido) { FrmMenuMain.uHelper = uHelper; this.Close(); } else { txtPin.Clear(); this.txtPin.Focus(); lblError.Visible = true; lblError.ForeColor = Color.DarkRed; lblError.Text = "¡PIN INCORRECTO!"; } } }
private void btnIngresar_Click(object sender, EventArgs e) { uHelper = ManejoUsuario.Autentificar(Convert.ToInt32(txtNoEmpleado.Text), txtContraseña.Text); if (uHelper.esValido) { frmMenu.uHelper = uHelper; this.Close(); } else { MessageBox.Show(uHelper.sMensaje, "Autentificacion", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNoEmpleado.Text = ""; txtContraseña.Text = ""; txtNoEmpleado.Focus(); } }