private void bunifuImageButton2_Click(object sender, EventArgs e)
        {
            this.Hide();
            FormThongTinNV TTNV = new FormThongTinNV();

            TTNV.Show();
            ThongTinCaNhan.SuaTTCaNhan = 1;
        }
        private void btnThem_Click(object sender, EventArgs e)
        {
            MoFormThongTinNV.phanbietthemsua = 1;
            FormThongTinNV formTTNV = new FormThongTinNV();

            formTTNV.Show();
            this.Hide();
        }
        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            if (dgvNhanVien.Columns[e.ColumnIndex].Name == "TDHD")
            {
                int      Ma = Convert.ToInt32(dgvNhanVien.Rows[e.RowIndex].Cells[0].Value.ToString());
                NhanVien nv = dt.NhanViens.Where(s => s.Ma == Ma).FirstOrDefault();

                if (nv.Ma_CV == 1)
                {
                    if (FormDangNhap.ThongTinNVDangNhap.MaNVDangNhap != 1)
                    {
                        MessageBox.Show("Bạn không có quyền để hủy hoạt động của quản lý");
                    }
                    else if (FormDangNhap.ThongTinNVDangNhap.MaNVDangNhap == 1)
                    {
                        if (Convert.ToBoolean(dgvNhanVien.Rows[e.RowIndex].Cells[8].Value.ToString()) == Convert.ToBoolean("True"))
                        {
                            dt.updateHoatDongnv(Ma, Convert.ToBoolean("False"));
                            dgvNhanVien.DataSource = dt.selectnv();
                            MessageBox.Show("Cập nhật trạng thái không hoạt động thành công", "Thành công");
                        }
                        else if (Convert.ToBoolean(dgvNhanVien.Rows[e.RowIndex].Cells[8].Value.ToString()) == Convert.ToBoolean("False"))
                        {
                            dt.updateHoatDongnv(Ma, Convert.ToBoolean("True"));
                            dgvNhanVien.DataSource = dt.selectnv();
                            MessageBox.Show("Cập nhật trạng thái hoạt động thành công", "Thành công");
                        }
                    }
                }
                else if (nv.Ma_CV != 1)
                {
                    if (Convert.ToBoolean(dgvNhanVien.Rows[e.RowIndex].Cells[8].Value.ToString()) == Convert.ToBoolean("True"))
                    {
                        dt.updateHoatDongnv(Ma, Convert.ToBoolean("False"));
                        dgvNhanVien.DataSource = dt.selectnv();
                        MessageBox.Show("Cập nhật trạng thái không hoạt động thành công", "Thành công");
                    }
                    else if (Convert.ToBoolean(dgvNhanVien.Rows[e.RowIndex].Cells[8].Value.ToString()) == Convert.ToBoolean("False"))
                    {
                        dt.updateHoatDongnv(Ma, Convert.ToBoolean("True"));
                        dgvNhanVien.DataSource = dt.selectnv();
                        MessageBox.Show("Cập nhật trạng thái hoạt động thành công", "Thành công");
                    }
                }
            }
            else if (dgvNhanVien.Columns[e.ColumnIndex].Name == "Xem")
            {
                MoFormThongTinNV.phanbietthemsua = 2;
                MoFormThongTinNV.ma = Convert.ToInt32(dgvNhanVien.Rows[e.RowIndex].Cells[0].Value.ToString());
                FormThongTinNV FTTNV = new FormThongTinNV();
                FTTNV.Show();
                this.Hide();
            }
        }