Esempio n. 1
0
        private void btnIniciar_Secion_Click(object sender, EventArgs e)
        {
            CEntidad P = new CProducto() as CEntidad;

            if (P.Login(txtUsuario.Text, txtContraseña.Text))
            {
                this.Hide();
                string tipo   = P.ValorAtributo("Tipo").ToString();
                string Nombre = P.ValorAtributo("Nombre").ToString();
                if (tipo == "ADMINISTRADOR")
                {
                    FrmAdministrador FA = new FrmAdministrador(txtUsuario.Text, Nombre);
                    FA.Size = new System.Drawing.Size(969, 725);
                    FA.ShowDialog();
                }
                else if (tipo == "VENDEDOR")
                {
                    FrmVendedor FV = new FrmVendedor(txtUsuario.Text, Nombre);
                    FV.Size = new System.Drawing.Size(969, 725);
                    FV.ShowDialog();
                }
                else if (tipo == "GERENTE")
                {
                    FrmGerente FG = new FrmGerente(txtUsuario.Text, Nombre);
                    FG.Size = new System.Drawing.Size(969, 725);
                    FG.ShowDialog();
                }
            }
            else
            {
                MessageBox.Show("Ingrese Datos Validos,Error en usuario o contraseña", "Error!!!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtContraseña.Clear();
                txtContraseña.Focus();
            }
        }