Esempio n. 1
0
 private void txtUsuario_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (char)13)
     {
         TxtContraseña.Focus();
     }
 }
 private void BtnIngresar_Click(object sender, EventArgs e)
 {
     try
     {
         if (TxtUsuario.Text == "Javier" && TxtContraseña.Text == "Cinthia")
         {
             FrmMenu frmmenu = new FrmMenu();
             this.Hide();
             frmmenu.Show();
         }
         else if (TxtContraseña.Text == "Holis")
         {
             FrmVendedor frmvendedor = new FrmVendedor();
             this.Hide();
             frmvendedor.Show();
         }
         else
         {
             MessageBox.Show("Datos Incorrectos");
             TxtUsuario.Clear();
             TxtContraseña.Clear();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("Error: " + ex);
     }
 }
Esempio n. 3
0
 public void OcultarLimpiar()
 {
     TxtContraseña.Clear();
     TxtNombre.Clear();
     TxtContraseña.Visible = false;
     TxtNombre.Visible     = false;
 }
Esempio n. 4
0
 public void LimpiarUsuario()
 {
     TxtContraseña.Clear();
     TxtDvFuncionario.Clear();
     TxtNombreFuncionario.Clear();
     TxtRutFuncionario.Clear();
     TxtNombreusuario.Clear();
 }
Esempio n. 5
0
        private void DeskLogin()
        {
            if (string.IsNullOrEmpty(TxtUsuario.Text))
            {
                MessageBox.Show("Ingresa tu Nombre de usuario.", "Message", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                TxtUsuario.Focus();
                return;
            }
            else if (string.IsNullOrEmpty(TxtContraseña.Text))
            {
                MessageBox.Show("Ingresa tu Contraseña.", "Message", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                TxtContraseña.Focus();
                return;
            }
            try
            {
                using (MediPlusSysContext test = new MediPlusSysContext())
                {
                    var query = from o in test.Usuarios
                                where o.NombreDeUsuario == TxtUsuario.Text &&
                                o.Contraseña == TxtContraseña.Text &&
                                o.IdCargo == 2
                                select o;

                    var query2 = from u in test.Usuarios
                                 where u.NombreDeUsuario == TxtUsuario.Text &&
                                 u.Contraseña == TxtContraseña.Text &&
                                 u.IdCargo == 3
                                 select u;

                    if (query2.SingleOrDefault() != null)
                    {
                        MENU MN = new MENU();
                        MN.Show();
                        //AdminD.admin = query2;

                        TxtContraseña.Clear();
                        TxtUsuario.Clear();
                    }
                    else if (query.SingleOrDefault() != null)
                    {
                        Menu2 MN2 = new Menu2();
                        MN2.Show();
                        //AdminD.admin = query;
                        TxtContraseña.Clear();
                        TxtUsuario.Clear();
                    }
                    else
                    {
                        MessageBox.Show("Nombre de usuario o Contraseña Incorrecta", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Esempio n. 6
0
        private void recordarDatosEnEquipo()
        {
            try
            {
                if (crearCarpetaAppdata().Trim() != "")
                {
                    if (TxtUsuario.Text.Trim() != "")
                    {
                        int         nodeCount = 0;
                        XmlDocument xmldoc = new XmlDocument();
                        XmlNode     xmlRoot, xmlNode;

                        string PathXml = crearCarpetaAppdata() + "\\UserInfo.xml";

                        if (!File.Exists(PathXml.Trim()))
                        {
                            xmlRoot   = xmldoc.CreateElement("Logins");
                            nodeCount = 0;
                        }
                        else
                        {
                            xmldoc.Load(PathXml.Trim());
                            xmlRoot   = xmldoc.SelectSingleNode("/Logins");
                            nodeCount = xmldoc.ChildNodes.Count;
                        }

                        nodeCount++;

                        xmldoc.AppendChild(xmlRoot);
                        xmlNode = xmldoc.CreateElement("User");                                // + nodeCount.ToString());
                        xmlRoot.AppendChild(xmlNode);
                        xmlNode.InnerText = Encrypt_Decrypt.Encriptar(TxtUsuario.Text.Trim()); //Agregamos el nombre del usuario deseado

                        xmldoc.Save(PathXml.Trim());
                        checkRecordar.Text    = "Dejar de recordar mi" + Environment.NewLine + "usuario";
                        checkRecordar.Checked = true;
                        LlenarComboLogins();
                        TxtContraseña.Focus();
                    }
                    else
                    {
                        checkRecordar.Checked = false;
                        checkRecordar.Text    = "Recordar mi usuario";
                    }
                }
                else
                {
                    checkRecordar.Checked = false;
                    checkRecordar.Text    = "Recordar mi usuario";
                }
            }
            catch
            {
                MessageBox.Show(this, "Se produjo un error al crear el archivo que contiene la información de los usuarios que desea almacenar en este equipo, por favor intente de nuevo.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
Esempio n. 7
0
 protected void ResetControl()
 {
     TxtDocumento.Clear();
     TxtNombre.Clear();
     TxtInstituto.Clear();
     TxtCorreo.Clear();
     TxtSaldoInicial.Clear();
     TxtCodigo.Clear();
     TxtContraseña.Clear();
 }
Esempio n. 8
0
 public void limpiar()
 {
     TxtNombreE.Clear();
     TxtIDUsuaro.Clear();
     TxtContraseña.Clear();
     TxtCEmpleado.Clear();
     pictureBox1.Hide();
     pictureBox2.Hide();
     pictureBox3.Hide();
     pictureBox4.Hide();
     pictureBox5.Hide();
 }
Esempio n. 9
0
 public void Clear()//Método para limpiar
 {
     TxtCodigo.Clear();
     TxtNombre.Clear();
     TxtUsuario.Clear();
     TxtContraseña.Clear();
     TxtConfirmar.Clear();
     TxtConfirmar.Visible = false;
     LblConfirmar.Visible = false;
     Inhabilitar();
     TxtCodigo.Enabled      = true;
     CbxEstado.SelectedItem = null;
     CbxPerfil.SelectedItem = null;
     MostrarTodos();
     BtnGuardar.Enabled   = false;
     BtnModificar.Enabled = false;
 }
Esempio n. 10
0
        private void btnIngresar_Click_1(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(TxtUsuario.Text) | String.IsNullOrEmpty(TxtContraseña.Text))
            {
                MessageBox.Show("USUARIO O CONTRASEÑA ESTAN VACIOS", "Mensaje");
                TxtContraseña.Clear();
                TxtUsuario.Clear();
            }
            else
            {
                if (conexion.obtenerUsuarioExiste(TxtUsuario.Text) == false)
                {
                    MessageBox.Show("EL USUARIO NO EXISTE O ES INCORRECTO", "Msj");
                    TxtContraseña.Clear();
                    TxtUsuario.Clear();
                }
                else
                {
                    if (conexion.Autentificar(TxtUsuario.Text, TxtContraseña.Text) > 0)
                    {
                        conexion.LlenarContraUsuarioGerente(TxtIdRol, TxtUsuario);

                        if (Convert.ToInt32(TxtIdRol.Text) != 1)
                        {
                            MessageBox.Show("EL USUARIO INGRESADO NO ES EL GERENTE", "Msj");
                            TxtContraseña.Clear();
                            TxtUsuario.Clear();
                        }
                        else
                        {
                            NuevaContraseñaIngresaGerente nueva = new NuevaContraseñaIngresaGerente();
                            nueva.Show();
                            this.Hide();
                        }
                    }
                    else
                    {
                        MessageBox.Show("NO SE PUEDE INGRESAR", "mensaje");
                        TxtContraseña.Clear();
                        TxtUsuario.Clear();
                    }
                }
            }
        }
Esempio n. 11
0
        public void Comun()//Método para guardar y modificar
        {
            TxtUsuario.Text    = TxtUsuario.Text.Trim();
            TxtContraseña.Text = TxtContraseña.Text.Trim();
            if ((TxtCodigo.Text.Equals("")) || (TxtNombre.Text.Equals("")) || (TxtUsuario.Text.Equals("")) || (TxtContraseña.Text.Equals("")) || (TxtConfirmar.Text.Equals("")))
            {
                MessageBox.Show("Por favor ingrese la información solicitada", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if ((CbxEstado.SelectedIndex.Equals(-1)) || (CbxPerfil.SelectedIndex.Equals(-1)))
            {
                MessageBox.Show("Por favor Seleccione una opción válida", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else
            {
                var Contraseña = ValidarContraseña(TxtContraseña.Text);
                if (!Contraseña)
                {
                    MessageBox.Show("Debe ingresar una contraseña válida", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    TxtContraseña.Clear();
                }
                else
                {
                    try
                    {
                        var Confirmar = TxtConfirmar.Text;
                        _usu = new LUsuarios
                        {
                            Codigo     = TxtCodigo.Text,
                            Usuario    = TxtUsuario.Text,
                            Contrasena = TxtContraseña.Text,
                            Perfil     = CbxPerfil.SelectedItem.ToString(),
                            Estado     = CbxEstado.SelectedItem.ToString(),
                            Creador    = perfil["Usuario"]
                        };
                        TxtUsuario.Text    = TxtUsuario.Text.Trim();
                        TxtContraseña.Text = TxtContraseña.Text.Trim();

                        if (_usu.Contrasena != Confirmar)
                        {
                            MessageBox.Show("La confirmación de la contraseña no coincide ", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        }
                        else
                        {
                            if (MessageBox.Show("¿Desea cotinuar?", "SmartPrint", MessageBoxButtons.YesNo,
                                                MessageBoxIcon.Question) == DialogResult.Yes)
                            {
                                _usu.GestionarServicios(_usu);
                                MessageBox.Show("Operación exitosa", "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Information);
                                Clear();
                                MostrarTodos();
                            }
                            else
                            {
                                MessageBox.Show("Operación Cancelada",
                                                "SmartPrint", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                            }
                        }
                    }
                    catch (Exception)
                    {
                        MessageBox.Show("El Usuario ya existe", "SmartPtint", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        TxtUsuario.Clear();
                    }
                }
            }
        }
Esempio n. 12
0
 private void btnIngresar_Click(object sender, EventArgs e)
 {
     if (String.IsNullOrEmpty(TxtUsuario.Text) | String.IsNullOrEmpty(TxtContraseña.Text))
     {
         MessageBox.Show("USUARIO O CONTRASEÑA ESTAN VACIOS", "Mensaje");
         TxtUsuario.Clear();
         TxtContraseña.Clear();
     }
     else
     {
         if (conexion.obtenerUsuarioExiste(TxtUsuario.Text) == false)
         {
             MessageBox.Show("EL USUARIO NO EXISTE ,INGRESE UNO CORRECTO", "Msj");
             TxtUsuario.Clear();
             TxtContraseña.Clear();
         }
         else
         {
             conexion.obtenerIntentosErroneos(txtIntentosErrores, TxtUsuario);
             int contadorErroresIngresar = Convert.ToInt32(txtIntentosErrores.Text);
             if (contadorErroresIngresar == 3)
             {
                 conexion.actualizarUsuarioBloqueado(TxtUsuario.Text);
                 MessageBox.Show("ESTE USUARIO ESTA BLOQUEADO POR SOBREPASAR EL LIMITE DE INTENTOS PARA INGRESAR", "Msj");
                 TxtUsuario.Clear();
                 TxtContraseña.Clear();
             }
             else
             {
                 if (conexion.Autentificar(TxtUsuario.Text) > 0)
                 {
                     conexion.LlenarContraUsuario(TxtIdRol, TxtUsuario, txtIdEstado);
                     if (conexion.Autentificar(TxtUsuario.Text, TxtContraseña.Text) > 0)
                     {
                         if (Convert.ToInt32(txtIdEstado.Text) == 3)
                         {
                             MessageBox.Show("DEBES CAMBIAR LA CONTRASEÑA", "Msj");
                             NuevaContraseñaUsuarios contraUsuarios = new NuevaContraseñaUsuarios();
                             String user = TxtUsuario.Text;
                             contraUsuarios.txtUsuarioRecuContraseña.Text = user;
                             contraUsuarios.Show();
                             this.Hide();
                         }
                         else
                         {
                             MessageBox.Show("BIENVENIDO", "Mensaje");
                             if (Convert.ToInt32(TxtIdRol.Text) == 1)
                             {
                                 FormGerente gere = new FormGerente();
                                 gere.Show();
                                 this.Hide();
                             }
                             /////////////////////Cajero2  cajero
                             else if (Convert.ToInt32(TxtIdRol.Text) == 2)
                             {
                                 Cajero ser = new Cajero();
                                 ser.Show();
                                 this.Hide();
                             }
                             //////////////////////
                             else if (Convert.ToInt32(TxtIdRol.Text) == 3)
                             {
                                 Servicio_Tecnico ser = new Servicio_Tecnico();
                                 ser.Show();
                                 this.Hide();
                             }
                             else if (Convert.ToInt32(TxtIdRol.Text) == 4)
                             {
                                 Bodega bdg = new Bodega();
                                 bdg.Show();
                                 this.Hide();
                             }
                         }
                     }
                     else
                     {
                         if (TxtIdRol.Text != "1")
                         {
                             MessageBox.Show("NO SE PUEDE INGRESAR", "mensaje");
                             contadorErroresIngresar++;
                             txtIntentosErrores.Text = Convert.ToString(contadorErroresIngresar);
                             conexion.actualizarErrores(txtIntentosErrores, TxtUsuario);
                             TxtUsuario.Clear();
                             TxtContraseña.Clear();
                         }
                         else
                         {
                             MessageBox.Show("NO SE PUEDE INGRESAR", "mensaje");
                             TxtUsuario.Clear();
                             TxtContraseña.Clear();
                         }
                     }
                 }
             }
         }
     }
 }
Esempio n. 13
0
        public bool ValidarObjetos()
        {
            try
            {

            

            bool Bsi_datosNull = false;
            if (txtidCuenta.Text == "")
            {
                ErrProvider.SetError(txtidCuenta, "Falta Cuenta");
                txtidCuenta.Focus();
                Bsi_datosNull = true;
            }

            if (txtdirecioncorreoElectronico.Text == "")
            {
                ErrProvider.SetError(txtdirecioncorreoElectronico, "Ingrese Correo");
                txtdirecioncorreoElectronico.Focus();
                Bsi_datosNull = true;
            }

            if (TxtNombreUsuario.Text == "")
            {
                ErrProvider.SetError(TxtNombreUsuario, "Ingrese Su Usuario");
                TxtNombreUsuario.Focus();
                Bsi_datosNull = true;
            }


            if (TxtContraseña.Text == "")
            {
                ErrProvider.SetError(TxtContraseña, "Ingrese Pasword");
                TxtContraseña.Focus();
                Bsi_datosNull = true;
            }

            if (txtSuNombre.Text == "")
            {
                ErrProvider.SetError(txtSuNombre, "Ingrese Su Nombre");
                txtSuNombre.Focus();
                Bsi_datosNull = true;
            }
            if (TxtServidorEntrante.Text == "")
            {
                ErrProvider.SetError(TxtServidorEntrante, "Ingrese nombre Servidor Correo");
                TxtServidorEntrante.Focus();
                Bsi_datosNull = true;
            }

            if (TxtServidorSaliente.Text == "")
            {
                ErrProvider.SetError(TxtServidorSaliente, "Ingrese nombre Servidor de Correo");//cmbtipoCuenta
                TxtServidorSaliente.Focus();
                Bsi_datosNull = true;
            }
            if (cmbtipoCuenta.Text == "")
            {
                ErrProvider.SetError(cmbtipoCuenta, "Escoga un tipo de Cuenta");//
                cmbtipoCuenta.Focus();
                Bsi_datosNull = true;
            }
            if (cmbtiposeguridad.Text == "")
            {
                ErrProvider.SetError(cmbtiposeguridad, "Escoga un tipo del Servidor");//
                cmbtiposeguridad.Focus();
                Bsi_datosNull = true;
            }
            return Bsi_datosNull;

            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message.ToString());
                BusSisLog.Log_Error(ex.Message.ToString(), eTipoError.ERROR, this.ToString());
                return false;

            }

        }
Esempio n. 14
0
 public void Limpiar()
 {
     TxtContraseña.Clear();
     TxtNombre.Clear();
     TxtDocumento.Clear();
 }