private void btnQLTK_Xoa_Click(object sender, System.EventArgs e)
        {
            DialogResult h;

            if (dtgvQLTK_Show.SelectedRows.Count > 0)
            {
                h = MessageBox.Show("Bạn Có Chắc Chắn Xóa", "Thông Báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
                if (h == DialogResult.Yes)
                {
                    bool kq = tkBUS.delACC(txtUserName.Text);
                    if (kq == true)
                    {
                        MessageBox.Show("Đã Xóa.", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        LoadData_QLTK();
                        restTxtQLTK();
                        errorProvider1.Clear();
                    }
                    else
                    {
                        MessageBox.Show("Xóa Không Thành Công", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                    txtDisplayName.Enabled = false;
                    txtPassWord.Enabled    = false;
                    btnQLTK_Xoa.Enabled    = false;
                    btnQLTK_Sua.Enabled    = false;
                    restTxtQLTK();
                    btnQLTK_Them.Enabled = true;
                }
            }
        }