private void btnFiltrar_Click(object sender, EventArgs e) { if (cbEFiltro.SelectedItem.ToString() == "Codigo Producto") { c.cargarStockCod(dgvStock, txtFiltro.Text); } if (cbEFiltro.SelectedItem.ToString() == "Nombre") { c.cargarStockNombre(dgvStock, txtFiltro.Text); } if (cbEFiltro.SelectedItem.ToString() == "Color") { string idColor = Loguear.ObtenerColor(cbFiltro.SelectedItem.ToString()); c.cargarStockColor(dgvStock, idColor); } if (cbEFiltro.SelectedItem.ToString() == "Tamaño") { string idTamaño = Loguear.ObtenerTamaño(cbFiltro.SelectedItem.ToString()); c.cargarStockTamaño(dgvStock, idTamaño); } if (cbEFiltro.SelectedItem.ToString() == "Marca") { string idMarca = Loguear.ObtenerMarca(cbFiltro.SelectedItem.ToString()); c.cargarStockMarca(dgvStock, idMarca); } if (cbEFiltro.SelectedItem.ToString() == "Bodega") { string idBodega = Loguear.ObtenerBodega(cbFiltro.SelectedItem.ToString()); c.cargarStockBodega(dgvStock, idBodega); } }
private void btnIngresar_Click(object sender, EventArgs e) { try { CNUsuario objUsuario = new CNUsuario(); SqlDataReader Loguear; objUsuario.Expediente = txtUsuario.Text; objUsuario.Contraseña = txtContraseña.Text; if (objUsuario.Expediente == txtUsuario.Text) { labelErrorUsuario.Visible = false; if (objUsuario.Contraseña == txtContraseña.Text) { labelErrorContraseña.Visible = false; Loguear = objUsuario.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); Form_MenuPrincipal objFP = new Form_MenuPrincipal(); //Carga los campos guardados en datareader para usarlos en los forms Program.tipoUsuario = Loguear["tipoUsuario"].ToString(); Program.nombre = Loguear["nombre"].ToString(); Program.expediente = Loguear["expediente"].ToString(); Program.idUsuario = Loguear["idUsuario"].ToString(); objFP.Show(); } else { labelErrorLogin.Visible = true; labelErrorLogin.Text = "Usuario o contraseña invalidos. intente de nuevo"; txtUsuario.Text = ""; txtUsuario_Leave(null, e); txtUsuario.Focus(); } } else { labelErrorContraseña.Visible = true; labelErrorContraseña.Text = objUsuario.Contraseña; } } else { labelErrorUsuario.Visible = true; labelErrorUsuario.Text = objUsuario.Expediente; } } catch (Exception) { MessageBox.Show("Error con la conexion al servidor. " + "Verifique que la cadena de conexion y la ruta esten correctas!!!"); } }
private void btnFiltro_Click(object sender, EventArgs e) { if (cbEFiltro.SelectedItem.ToString() == "Trabajador") { //c.cargarVentasTrabajador(dgvVentasActivas, txtFiltro.Text); } if (cbEFiltro.SelectedItem.ToString() == "Cliente") { c.cargarVentasCliente(dgvVentasActivas, txtFiltro.Text); } if (cbEFiltro.SelectedItem.ToString() == "Pedido") { c.cargarVentasPedido(dgvVentasActivas, txtFiltro.Text); } if (cbEFiltro.SelectedItem.ToString() == "Comuna") { string idComuna = Loguear.ObtenerC(cbFiltro.SelectedItem.ToString()); c.cargarVentasComuna(dgvVentasActivas, idComuna); } if (cbEFiltro.SelectedItem.ToString() == "Provincia") { string idProvincia = Loguear.ObtenerProv(cbFiltro.SelectedItem.ToString()); c.cargarVentasProvincia(dgvVentasActivas, idProvincia); } if (cbEFiltro.SelectedItem.ToString() == "Región") { string idRegion = Loguear.ObtenerRegi(cbFiltro.SelectedItem.ToString()); c.cargarVentasRegion(dgvVentasActivas, idRegion); } }
private void btnFiltrar2_Click(object sender, EventArgs e) { if (cbEFiltro2.SelectedItem.ToString() == "Trabajador") { c.cargarVentasTrabajador2(dgvVentasFinalizadas, txtFiltro2.Text); } if (cbEFiltro2.SelectedItem.ToString() == "Cliente") { c.cargarVentasCliente2(dgvVentasFinalizadas, txtFiltro2.Text); } if (cbEFiltro2.SelectedItem.ToString() == "Pedido") { c.cargarVentasPedido2(dgvVentasFinalizadas, txtFiltro2.Text); } if (cbEFiltro2.SelectedItem.ToString() == "Comuna") { string idComuna = Loguear.ObtenerC(cbFiltro2.SelectedItem.ToString()); c.cargarVentasComuna2(dgvVentasFinalizadas, idComuna); } if (cbEFiltro2.SelectedItem.ToString() == "Provincia") { string idProvincia = Loguear.ObtenerProv(cbFiltro2.SelectedItem.ToString()); c.cargarVentasProvincia2(dgvVentasFinalizadas, idProvincia); } if (cbEFiltro2.SelectedItem.ToString() == "Región") { string idRegion = Loguear.ObtenerRegi(cbFiltro2.SelectedItem.ToString()); c.cargarVentasRegion2(dgvVentasFinalizadas, idRegion); } }
private void txtpass_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == Convert.ToChar(Keys.Enter)) { try { CN_Empleado ObjEmpleado = new CN_Empleado(); SqlDataReader Loguear; ObjEmpleado.Usuario = txtusuario.Text; ObjEmpleado.Contraseña = txtpass.Text; Loguear = ObjEmpleado.IniciarSession(); if (Loguear.Read() == true) { FrmMenu obj = new FrmMenu(); Program.Cargo = Loguear["Cargo"].ToString(); Program.Nombres = Loguear["Nombres"].ToString(); Program.Apellidos = Loguear["Apellidos"].ToString(); obj.Show(); this.Hide(); } else { MessageBox.Show("Usuario o password Incorrecta"); } } catch (Exception E) { MessageBox.Show("Error" + E.Message); } } }
public bool logearse(Form frm, Label lblUser, Label lblPass, Label lblLogearse, TextBox user, TextBox pass) { SqlDataReader Loguear; if (Usuario == string.Empty) { lblUser.Text = "Llene el campo usuario"; return(false); } else { lblUser.Text = string.Empty; } if (Contraseña == string.Empty) { lblPass.Text = "Llene el campo de contraseña"; return(false); } else { lblPass.Text = string.Empty; } Loguear = Usuario_D.logearse(Usuario, Contraseña); if (Loguear.Read() == true) { frm.Show(); return(true); } else { pass.Text = string.Empty; lblLogearse.Text = "Usuario o contraseña invalidas, intente de nuevo"; return(false); } }
private void button1_Click(object sender, EventArgs e) { if (txtUsuario.Text != "" && txtContraseña.Text != "") { string resultados = Loguear.LoguearSesion(txtUsuario.Text, txtContraseña.Text); if (resultados != "") { sesionIniciada = true; MessageBox.Show(resultados, "Vidacero", MessageBoxButtons.OK); this.Hide(); Contenedor c = new Contenedor(); c.ShowDialog(); this.Close(); } else { sesionIniciada = false; MessageBox.Show("Acceso denegado, intente nuevamente"); txtUsuario.Text = ""; txtContraseña.Text = ""; txtUsuario.Focus(); } } else { sesionIniciada = false; MessageBox.Show("Acceso denegado, intente nuevamente"); txtUsuario.Text = ""; txtContraseña.Text = ""; txtUsuario.Focus(); } }
private void btnModificar_Click(object sender, EventArgs e) { string rut = dgvClientes[0, poc].Value.ToString(); Loguear.updateCliente(Convert.ToInt32(rut), textBox1.Text, textBox2.Text); c.cargarClientes(dgvClientes); Limpiar(); }
private void btnEliminar_Click(object sender, EventArgs e) { string cod = dgvInicio[0, poc].Value.ToString(); Loguear.EliminarUsuario(cod); c.cargarInicioSesion(dgvInicio); limpiar(); }
private void button1_Click(object sender, EventArgs e) { string cod = dgvVentasActivas[0, poc].Value.ToString(); Loguear.updateEntregar(Convert.ToInt32(cod)); c.cargarVentas(dgvVentasActivas); c.cargarVentas2(dgvVentasFinalizadas); }
private void entrar() { //if (HayInternet() == true) //{ try { CN_Login _Login = new CN_Login(); MySqlDataReader Loguear; Loguear = _Login.IniciarSesion(txtNickname.Text, txtContra.Text); if (Loguear.Read() == true) { /* * if (HayInternet() == true) * { * * } * else * { * * MessageBox.Show("Compruebe su conexión a internet, no tendrá todas las funcionalidades", "Conexion a internet", MessageBoxButtons.OK, MessageBoxIcon.Error); * } */ Cursor.Current = Cursors.WaitCursor; Program.nickname = txtNickname.Text; Program.contraseña = txtContra.Text; Program.cargo = Loguear["nombreCargo"].ToString(); Program.nombre = Loguear["Nombre"].ToString(); Program.apellidos = Loguear["Apellidos"].ToString(); Program.correo = Loguear["Correo"].ToString(); dsUsuario Ds = new dsUsuario(); for (int i = 0; i < 3; i++) { Ds.Tables[0].Rows.Add(new object[] { Loguear["nombreCargo"].ToString(), Loguear["Nombre"].ToString(), Loguear["Correo"].ToString() }); } Reportes r = new Reportes(); r.setInformacion(Ds); Menu mn = new Menu(); mn.Show(); Cursor.Current = Cursors.Default; this.Hide(); } else { MessageBox.Show("Usuario o contraseña incorrectos", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Error); txtContra.Focus(); } } catch (Exception ex) { MessageBox.Show("Ha ocurrido un error " + ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } //} else { // MessageBox.Show("Compruebe su conexión a internet", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); //} }
private void btnBodega_Click(object sender, EventArgs e) { int cod = Convert.ToInt32(dgvCompras[0, poc].Value.ToString()); Loguear.updateCompra(cod); c.cargarCompras(dgvCompras); btnBodega.Enabled = false; groupBox1.Enabled = true; }
private void validar() { CNUsuario objUsuario = new CNUsuario(); SqlDataReader Loguear; SqlDataReader Perfil; objUsuario.Usuario = tbUsuario.Text; objUsuario.Pass = tbContrasenna.Text; if (objUsuario.Usuario == tbUsuario.Text) { Loguear = objUsuario.IniciarSesion(); if (Loguear.Read() == true) { Perfil = objUsuario.UsuarioPerfil(); liston = new List <string>(); FormMenuPrincipal objPPrincipal = new FormMenuPrincipal(); try { while (Perfil.Read()) { nomUsu = Perfil["Nombres"].ToString(); patUsu = Perfil["ApellidoPaterno"].ToString(); matUsu = Perfil["ApellidoMaterno"].ToString(); rol = Perfil["nomRol"].ToString(); if (Perfil["foto"].ToString() != "") { picture = (byte[])(Perfil["foto"]); MemoryStream ms = new MemoryStream(picture); objPPrincipal.pbPerfil.Image = Image.FromStream(ms); } LoginInfo.IdUsuario = Perfil["IdUsuario"].ToString(); objPPrincipal.label1.Text = nomUsu; objPPrincipal.label2.Text = patUsu + " " + matUsu; objPPrincipal.label3.Text = rol; liston.Add(Perfil["descripcion"].ToString()); } //Console.WriteLine(liston[0].ToString()+ " .. "+ liston[1].ToString()); Hide(); Loguear.Close(); objPPrincipal.Show(); } catch (Exception e) { MessageBox.Show("Error en el loginForm" + e); } } else { MessageBox.Show("Usuario o contraseña Invalidos"); } } }
private void btnBorrar_Click(object sender, EventArgs e) { string cod = dgvVentasActivas[0, poc].Value.ToString(); Loguear.EliminarVenta(cod); c.cargarVentas(dgvVentasActivas); cbEFiltro.ResetText(); cbFiltro.ResetText(); txtFiltro.Text = ""; btnBorrar.Enabled = false; }
protected void Page_Load(object sender, EventArgs e) { N_ConsultaUsuario objUsuario = new N_ConsultaUsuario(); SqlDataReader Loguear; Loguear = objUsuario.IniciarSesion(); Loguear.Read(); Label1.Text = P_ClasePrevilegios.Tipousuario; // Label2.Text = P_ClasePrevilegios.CualApellido; }
private void btnLogin_Click(object sender, EventArgs e) { CNLogin objLogin = new CNLogin(); SqlDataReader Loguear; objLogin.Usuario = txtUser.Text; objLogin.Contraseña = txtPass.Text; if (objLogin.Usuario == txtUser.Text) { lblErrorUsuario.Visible = false; if (objLogin.Contraseña == txtPass.Text) { lblErrorPass.Visible = false; Loguear = objLogin.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); LoginCarga _loginCarga = new LoginCarga(); _loginCarga.Show(); //try //{ // Program.Cargo = Loguear["TIP_ID"].ToString(); //} //catch (Exception w) //{ //} } else { lblErrorLogin.Text = "Usuario o Contraseña invalidas, intente de nuevo"; lblErrorLogin.Visible = true; txtPass.Text = ""; txtPass_Leave(null, e); txtUser.Focus(); } } else { lblErrorPass.Text = objLogin.Contraseña; lblErrorPass.Visible = true; } } else { lblErrorUsuario.Text = objLogin.Usuario; lblErrorUsuario.Visible = true; } }
private void btnlogin_Click(object sender, EventArgs e) { CNUsuario objUsuario = new CNUsuario(); SqlDataReader Loguear; string usuario = txtuser.Text; objUsuario.Usuario = txtuser.Text; objUsuario.Pass = txtpass.Text; if (objUsuario.Usuario == txtuser.Text) { if (objUsuario.Pass == txtpass.Text) { Loguear = objUsuario.IniciarSesion(); if (Loguear.Read() == true) { CNUsuario objDato = new CNUsuario(); objDato.Usuario = usuario; DataTable dato = objDato.BuscarUsuario(); if (dato.Rows[0][2].ToString().Equals("Administrador")) { this.Hide(); Inicio ObjFP = new Inicio(); ObjFP.Show(); } else { this.Hide(); Inicio ObjFP = new Inicio("a"); ObjFP.Show(); } } else { MessageBox.Show("Usuario o Contraseña Invalida"); txtuser.Text = "USUARIO"; txtuser.ForeColor = Color.LightGray; txtpass.Text = "CONTRASEÑA"; txtpass.ForeColor = Color.LightGray; txtpass.UseSystemPasswordChar = false; } } else { MessageBox.Show(objUsuario.Pass); } } else { MessageBox.Show(objUsuario.Usuario); } }
private void button1_Click(object sender, EventArgs e) { CN_Usuario objCOnsulta = new CN_Usuario(); SqlDataReader Loguear; objCOnsulta.Usuario = txtUsuario.Text; objCOnsulta.Contraseña = txtContrasea.Text; Loguear = objCOnsulta.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); MessageBox.Show("Bienvenido"); } }
private void btnLogin_Click(object sender, EventArgs e) { CNEmpleados objEmpleado = new CNEmpleados(); MySqlDataReader Loguear; objEmpleado.Usuario = txtUsuario.Text; objEmpleado.Contrasenia = txtContra.Text; if (objEmpleado.Usuario == txtUsuario.Text) { lblErrorUsuario.Visible = false; if (objEmpleado.Contrasenia == txtContra.Text) { lblErrorContra.Visible = false; Loguear = objEmpleado.iniciarSesion(); if (Loguear.Read() == true) { this.Hide(); frmPrincipal objFP = new frmPrincipal(); Program.Cargo = Loguear["tipo_de_usuario"].ToString(); Program.Nombre = Loguear["nombre"].ToString(); Program.Apellidos = Loguear["apellido"].ToString(); Program.Correo = Loguear["correo_elec"].ToString(); objFP.Show(); } else { lblErrorLogin.Text = "¡Usuario o contraseña invalidos!"; lblErrorLogin.Visible = true; txtContra.Text = ""; txtContra_Leave(null, e); txtContra_Enter(null, e); txtContra.Focus(); } } else { lblErrorContra.Text = objEmpleado.Contrasenia; lblErrorLogin.Visible = false; lblErrorContra.Visible = true; } } else { lblErrorUsuario.Text = objEmpleado.Usuario; lblErrorUsuario.Visible = true; } }
private void btnlogin_Click(object sender, EventArgs e) { CNEmpleado objEmpleado = new CNEmpleado(); SqlDataReader Loguear; objEmpleado.Usuario = txtuser.Text; objEmpleado.Contraseña = txtpass.Text; if (objEmpleado.Usuario == txtuser.Text) { Loguear = objEmpleado.IniciarSesion(); if (Loguear.Read() == true) { Program.cargo = Loguear["cargo"].ToString(); Program.nombre = Loguear["nombre"].ToString(); Program.apellido = Loguear["apellido"].ToString(); if (Program.cargo != "Propietaria") { this.Hide(); Menu ObjFP = new Menu(); Program.cargo = Loguear["cargo"].ToString(); Program.nombre = Loguear["nombre"].ToString(); Program.apellido = Loguear["apellido"].ToString(); ObjFP.Show(); } else { this.Hide(); Menu ObjFP = new Menu(); Program.cargo = Loguear["cargo"].ToString(); Program.nombre = Loguear["nombre"].ToString(); Program.apellido = Loguear["apellido"].ToString(); ObjFP.Show(); } } else { btErrorLogin.Text = "Usuario o contraseña invalidas, intente de nuevo"; btErrorLogin.Visible = true; txtpass.Text = ""; } } else { MessageBox.Show(objEmpleado.Usuario); } }
private void btnlogin_Click(object sender, EventArgs e) { CNEmpleado ObjEmpleado = new CNEmpleado(); SqlDataReader Loguear; ObjEmpleado.Usuario = txtuser.Text; ObjEmpleado.Contraseña = txtpass.Text; if (ObjEmpleado.Usuario == txtuser.Text) { lblErrorUser.Visible = false; if (ObjEmpleado.Contraseña == txtpass.Text) { lblErrorPass.Visible = false; Loguear = ObjEmpleado.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); FormContent ObjFP = new FormContent(); Program.Cargo = Loguear["Cargo"].ToString(); Program.Nombre = Loguear["Nombres"].ToString(); Program.Apellido = Loguear["Apellidos"].ToString(); ObjFP.Show(); } else { lblErrorAcceso.Text = "Неправильный логин или пароль, попробуйте еще раз"; lblErrorAcceso.Visible = true; txtpass.Text = ""; txtpass_Leave(null, e); txtuser.Focus(); } } else { lblErrorPass.Text = ObjEmpleado.Contraseña; lblErrorPass.Visible = true; } } else { lblErrorUser.Text = ObjEmpleado.Usuario; lblErrorUser.Visible = true; } }
private void btnlogin_Click(object sender, EventArgs e) { //Form formulario = new FormMenuPrincipal(); //formulario.Show(); CNEmpleado objEmpleado = new CNEmpleado(); SqlDataReader Loguear; objEmpleado.Usuario = textuser.Text; objEmpleado.Contraseña = textpass.Text; if (objEmpleado.Usuario == textuser.Text) { lblErrorUsuario.Visible = false; if (objEmpleado.Contraseña == textpass.Text) { lblErrorPass.Visible = false; Loguear = objEmpleado.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); FormMenuPrincipal ObjFP = new FormMenuPrincipal(); ObjFP.Show(); } else { lblErrorLogin.Text = "Usuario o contraseña invalidas, intente de nuevo porfavor"; lblErrorLogin.Visible = true; textpass.Text = ""; textpass_Leave(null, e); textuser.Focus(); } } else { lblErrorPass.Text = objEmpleado.Contraseña; lblErrorPass.Visible = true; } } else { lblErrorUsuario.Text = objEmpleado.Usuario; lblErrorUsuario.Visible = true; } }
private void btnFinalizar_Click(object sender, EventArgs e) { int precio = calcularPrecio(); int color = cbColor.SelectedIndex + 1; string colorN = cbColor.SelectedItem.ToString(); int tamaño = cbTamaño.SelectedIndex + 1; string tamañoN = cbTamaño.SelectedItem.ToString(); int marca = cbMarca.SelectedIndex + 1; string marcaN = cbMarca.SelectedItem.ToString(); int prod = (((color + tamaño + marca) * color) - marca); string nombre = "P. " + colorN + " " + marcaN + " " + tamañoN; Loguear.agregarProducto2((precio * Convert.ToInt32(NUPcantidad.Value)), cbColor.SelectedIndex + 1, cbTamaño.SelectedIndex + 1, cbMarca.SelectedIndex + 1, Convert.ToInt32(NUPcantidad.Value), nombre); Loguear.agregarCompra(cbProveedor.SelectedIndex + 1, prod, Convert.ToInt32(NUPcantidad.Value), 0); c.cargarCompras(dgvCompras); limpiar(); }
protected void Button1_Click(object sender, EventArgs e) { N_ConsultaUsuario objUsuario = new N_ConsultaUsuario(); SqlDataReader Loguear; objUsuario.Username = TextBox1.Text; objUsuario.Password = TextBox2.Text; Loguear = objUsuario.IniciarSesion(); if (Loguear.Read() == true) { P_ClasePrevilegios.Tipousuario = Loguear["TipoUsuario"].ToString(); P_ClasePrevilegios.CualApellido = Loguear["Apellido"].ToString(); P_ClasePrevilegios.CualNombre = Loguear["Nombre"].ToString(); if (P_ClasePrevilegios.Tipousuario == "Profesor") { //aqui estamos mandando a llamar los registros nombre y apellidos de la bd atravez de Tipousuario y CualApellido las cuales se encuentran en la capa Presentacion P_ClasePrevilegios.Tipousuario = Loguear["TipoUsuario"].ToString(); // P_ClasePrevilegios.CualApellido = Loguear["Apellido"].ToString(); // P_ClasePrevilegios.CualNombre = Loguear["Nombre"].ToString(); Response.Redirect("TempleMP/HomeProfesor.aspx"); } else { if (P_ClasePrevilegios.Tipousuario == "Administrador") { Response.Redirect("TempleMP/Form_Usuarios.aspx"); } else { Response.Write("<script>window.alert('AVISO: Este Parametro No tiene un Rol especifico')</script>"); TextBox1.Text = " "; TextBox2.Text = " "; } } } else { Response.Write("<script>window.alert('AVISO: El Usuario Y la Contraseña son Incorrectos')</script>"); } }
private void bunifuThinButton21_Click(object sender, EventArgs e) { SplashScreen mp = new SplashScreen(); CN_Usuario objCOnsulta = new CN_Usuario(); SqlDataReader Loguear; objCOnsulta.Usuario = txtUsuario.Text; objCOnsulta.Contraseña = txtContrasea.Text; Loguear = objCOnsulta.IniciarSesion(); if (Loguear.Read() == true) { mp.Show(); this.Hide(); } mp.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { cnMaestro user = new cnMaestro(); SqlDataReader Loguear; user.Usuario = txtUser.Text; user.Contraseña = txtPass.Text; if (user.Usuario == txtUser.Text) { errorUsuario.Visible = false; if (user.Contraseña == txtPass.Text) { errorContraseña.Visible = false; Loguear = user.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); formPrincipal principal = new formPrincipal(); principal.Show(); } else { errorLogin.Text = "Usuario o Contraseña invalidad, intente de nuevo"; errorLogin.Visible = true; txtPass.Text = ""; txtPass_Leave(null, e); txtUser.Focus(); } } else { errorContraseña.Text = user.Contraseña; errorContraseña.Visible = true; } } else { errorUsuario.Text = user.Usuario; } errorUsuario.Visible = true; }
private void button1_Click(object sender, EventArgs e) { clasUsuario1 objUser = new clasUsuario1(); SqlDataReader Loguear; objUser._Usuario = tx_user.Text; objUser._Contraseña = tx_contrase.Text; //Loguear = objUser.iniciarsesion(); if (objUser._Usuario == tx_user.Text) { lbuser.Visible = false; if (objUser._Contraseña == tx_contrase.Text) { lbpass.Visible = true; Loguear = objUser.iniciarsesion(); if (Loguear.Read() == true) { this.Hide(); principal iniciando = new principal(); Program.perfil = Loguear["Perfil"].ToString(); iniciando.Show(); } else { lblogin.Text = "Usuario o contraseña invalidos, intente de nuevo"; lblogin.Visible = true; tx_contrase.Text = ""; tx_contrase_Leave(null, e); tx_user.Focus(); } } else { lbpass.Text = objUser._Contraseña; lbpass.Visible = true; } } else { lbuser.Text = objUser._Usuario; lbuser.Visible = true; } }
private void botonAcceder_Click(object sender, EventArgs e) { CNUsuarios objUsuario = new CapaNegocio.CNUsuarios(); SqlDataReader Loguear; objUsuario.Usuario = t_usuario.Text; objUsuario.Contraseña = t_contraseña.Text; if (objUsuario.Usuario == t_usuario.Text) { l_Usuario.Visible = false; if (objUsuario.Contraseña == t_contraseña.Text) { l_Contraseña.Visible = false; Loguear = objUsuario.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); Form1 objF1 = new Form1(); objF1.Show(); } else { l_Login.Text = "Usuario o contraseña incorrectas, intente de nuevo"; l_Login.Visible = true; t_contraseña.Text = ""; t_contraseña_Leave(null, e); t_usuario.Focus(); } } else { l_Contraseña.Text = objUsuario.Contraseña; l_Contraseña.Visible = true; } } else { l_Usuario.Text = objUsuario.Usuario; l_Usuario.Visible = true; } }
private void btnAcceder_Click(object sender, EventArgs e) { CNUsuario objetoUsuario = new CNUsuario(); SqlDataReader Loguear; objetoUsuario.Usuario = txtUser.Text; objetoUsuario.Contraseña = txtpass.Text; Loguear = objetoUsuario.IniciarSesion(); if (Loguear.Read() == true) { this.Hide(); Form1 ObjFP = new Form1(); ObjFP.Show(); } else { MessageBox.Show("Usuario o contraseña invalido"); } }
private void btnGuardar_Click(object sender, EventArgs e) { if (txtUsuario.Text != "" && txtContraseña.Text != "" && (rbAdministrador.Checked || rbTrabajador.Checked)) { if (rbTrabajador.Checked) { tipoU = 2; } if (rbAdministrador.Checked) { tipoU = 1; } Loguear.agregarUsuario(txtUsuario.Text, txtContraseña.Text, tipoU); c.cargarInicioSesion(dgvInicio); limpiar(); } else { MessageBox.Show("Debe llenar todos los campos para agregar un nuevo usuario", "Nuevo Usuario", MessageBoxButtons.OK); } }