private void btnDangNhap_Click(object sender, EventArgs e)
        {
            try
            {
                if (dn.LayTaiKhoan(txtTaiKhoan.Text, txtMatKhau.Text) == 1 && dn.LayTrangThai(txtTaiKhoan.Text, txtMatKhau.Text) == "Hoạt động")
                {
                    TenNVDangChon   = dn.LayTenNV(txtTaiKhoan.Text, txtMatKhau.Text);
                    QuyenNVDangChon = dn.LayQuyenNV(txtTaiKhoan.Text, txtMatKhau.Text);
                    MaNVDangChon    = dn.LayMaNV(txtTaiKhoan.Text, txtMatKhau.Text);
                    TenTK           = txtTaiKhoan.Text;

                    MessageBox.Show("Đăng nhập thành công");
                    this.Hide();
                    frmTrangChu trangChu = new frmTrangChu();
                    trangChu.ShowDialog();
                }
                else if (dn.LayTaiKhoan(txtTaiKhoan.Text, txtMatKhau.Text) == 1 && dn.LayTrangThai(txtTaiKhoan.Text, txtMatKhau.Text) == "Tạm ngưng")
                {
                    MessageBox.Show("Tài khoản đã bị khóa");
                }
                else
                {
                    MessageBox.Show("Sai Tên Đăng Nhập Hoặc Mật Khẩu!");
                }
            }
            catch
            {
            }
        }