Пример #1
0
        private void button4_Click(object sender, EventArgs e)
        {
            this.Close();
            PanelControl pc = new PanelControl();

            pc.Show();
        }
        private void toolStripLabel4_Click(object sender, EventArgs e)
        {
            this.Close();
            PanelControl pc = new PanelControl();

            pc.Show();
        }
Пример #3
0
        private void pictureBox2_Click(object sender, EventArgs e)
        {
            if (tex_usuario.Text == "")
            {
                MessageBox.Show("El campo NOMBRE no pude estar vacio");
                tex_usuario.Focus();
            }

            if (tex_clave.Text == "")
            {
                MessageBox.Show("El campo CLAVE no pude estar vacio");
                tex_clave.Focus();
            }

            /*if (tex_clave.Text == "" || tex_usuario.Text == "")
             * {
             *  MessageBox.Show("No puede estar vacios los campos");
             *  tex_usuario.Focus();
             * }*/
            if (tex_usuario.Text == "Admin" || tex_usuario.Text == "admin")
            {
                if (tex_clave.Text == "Admin" || tex_clave.Text == "ADMIN" || tex_clave.Text == "admin")
                {
                    PanelControl pc = new PanelControl();

                    this.Hide();
                    pc.label_usuario.Text             = "ADMINISTRADOR";
                    pc.pictureBox2.BackgroundImage    = Properties.Resources.admin;
                    pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
                    pc.Show();
                }
                else
                {
                    MessageBox.Show("clave incorrecta");
                }
            }
            else if (tex_usuario.Text == "cliente" || tex_usuario.Text == "Cliente")
            {
                if (tex_clave.Text == "123")
                {
                    PanelControl pc = new PanelControl();
                    this.Hide();
                    pc.label_usuario.Text          = "CLIENTES";
                    pc.pictureBox2.BackgroundImage = Properties.Resources.user;
                    //pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
                    pc.Show();
                }
            }
        }