Esempio n. 1
0
        private void btnDangNhap_Click(object sender, EventArgs e)
        {
            DBService db = new DBService();

            db.openconn();
            string        t  = "select l.*,nv.NV_name from TaiKhoan l inner join NhanVien nv on l.NV_id = nv.NV_id where l.Username = '******' and l.Pass = '******'";
            SqlDataReader rd = db.getDataReader(t);

            if (rd.HasRows)
            {
                rd.Read();
                if (rd.GetString(1) == txtTenDangNhap.Text && rd.GetString(2) == txtMatKhau.Text)
                {
                    MessageBox.Show("Đăng nhập thành công.\nChào " + rd.GetString(4), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    pq = rd.GetString(3);
                    this.Hide();
                    if (rd.GetString(2) == "Admin")
                    {
                        fmAdmin qlns = new fmAdmin();
                        qlns.ShowDialog();
                        this.Show();
                    }
                    else
                    {
                        fmAdmin qlns = new fmAdmin(pq);
                        qlns.ShowDialog();
                    }
                    txtTenDangNhap.Text = "";
                    txtMatKhau.Text     = "";
                }
                else
                {
                    MessageBox.Show("Tên tài khoản hoặc mật khẩu chưa đúng!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                MessageBox.Show("Tên tài khoản hoặc mật khẩu chưa đúng!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            db.closeconn();
        }
Esempio n. 2
0
        private void showFMAdmin()
        {
            fmAdmin qlns = new fmAdmin(pq);

            qlns.ShowDialog();
        }