private void txtCont_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == Convert.ToChar(Keys.Enter)) { if (!(compruebaSerial()) == false) { if (txtUsu.Text != "") { if (txtCont.Text != "") { lnusuario lusuario = new lnusuario(); var loginvalido = lusuario.loginuser(txtUsu.Text, txtCont.Text); if (loginvalido == true) { Bienvenida bienvenida = new Bienvenida(); bienvenida.Show(); this.Hide(); } else { msgError("Los valores ingresados son incorrectos"); txtCont.Clear(); txtUsu.Focus(); } } else { msgError("Por favor ingrese su contraseña"); } } else { msgError("Por favor ingrese su nombre de usuario"); } } // If compruebaSerial() = False Then //Else // If txtUsuario.Text = "admin" And txtClave.Text = "123" Then // Form1.Show() // Me.Hide() // Else // MsgBox("Usuario o Clave incorrecta") // End If // End If } }
private void button1_Click(object sender, EventArgs e) { if (!(compruebaSerial()) == false) { if (txtUsu.Text != "") { if (txtCont.Text != "") { lnusuario lusuario = new lnusuario(); var loginvalido = lusuario.loginuser(txtUsu.Text, txtCont.Text); if (loginvalido == true) { Bienvenida bienvenida = new Bienvenida(); bienvenida.Show(); this.Hide(); } else { msgError("Los valores ingresados son incorrectos"); txtUsu.Clear(); txtCont.Clear(); txtUsu.Focus(); } } else { msgError("Por favor ingrese su contraseña"); } } else { msgError("Por favor ingrese su nombre de usuario"); } } }