Beispiel #1
0
        /// <summary>
        /// Authentication Administrator or Employee when login
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnLogin_Click(object sender, EventArgs e)
        {
            string userName = txtUsername.Text;
            string pwd      = txtPwd.Text;
            //get role of account
            int role = am.checkRole(userName);

            //if correct account then decentralization
            if (am.isCorrectAccount(userName, pwd))
            {
                //check role if role = 1 then load form Administrator,
                //role = 2 then load form Staff
                if (am.checkRole(userName) == 1)
                {
                    frmAdmin ad = new frmAdmin();
                    //send username to admin form
                    ad.SenderAD(txtUsername.Text);
                    ad.Show();
                    this.Hide();
                }
                else if (am.checkRole(userName) == 2)
                {
                    Staff s = new Staff();
                    //send username to Staff form
                    s.SenderStaffUser(txtUsername.Text);
                    s.Show();
                    this.Hide();
                }
            }
            else    //Send error message when enter wrong account
            {
                MessageBox.Show("Username or Password is not correct!", "Login",
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Beispiel #2
0
        private void btnLogin_Click(object sender, EventArgs e)
        {
            string userName = txtUsername.Text;
            string pwd      = txtPwd.Text;
            int    role     = am.checkRole(userName);

            if (am.isCorrectAccount(userName, pwd))
            {
                //check role if role = 1 then load form Administrator, role = 2 then load form Staff
                if (am.checkRole(userName) == 1)
                {
                    frmAdmin ad = new frmAdmin();
                    this.Hide();
                    ad.Show();
                }
                else if (am.checkRole(userName) == 2)
                {
                    Staff s = new Staff();
                    //delPassData trans = new delPassData(s.getUserName);
                    //trans(this.txtUsername);
                    s.Show();
                    this.Hide();
                }
            }
            else
            {
                MessageBox.Show("Username or Password is not correct!", "Login",
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }