private void btnEntrada_Click(object sender, EventArgs e) { if (txtUsuario.Text == "admin" && txtContraseña.Text == "123") { FrmPrincipal frmPrincipal = new FrmPrincipal(); frmPrincipal.Show(); this.Hide(); } else { MessageBox.Show("ERROR DE USUARIO O CONTRASEÑA"); } }
private void btnIngresar_Click(object sender, EventArgs e) { SqlConnection conectar = new SqlConnection("server=BOGDFPCGMXF1PN; database=login;integrated security = true"); conectar.Open(); SqlCommand codigo = new SqlCommand(); SqlConnection conectanos = new SqlConnection(); codigo.Connection = conectar; codigo.CommandText = "SELECT * FROM dbo.usuarios where usuario='" + txtUsuario.Text + "' AND password= '******'"; SqlDataReader leer = codigo.ExecuteReader(); if (leer.Read()) { FrmPrincipal frmprincipal = new FrmPrincipal(); frmprincipal.Show(); } else { MessageBox.Show("Usuario no Existe en Base de Datos"); } }