// sửa
 private void btnModify_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Bạn có thực sự muốn sửa khách hàng này không ?", "Xác nhận", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         dataGridView1.Enabled = false;
         dskh = new BUS_KhachHang();
         string codeId = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString();
         if (dskh.SuaKh(Themkh(), codeId))
         {
             MessageBox.Show("Đã sửa khách hàng !", "Thông báo", MessageBoxButtons.OK);
             DataTable tbl = dskh.DSKhachHang();
             dataGridView1.DataSource = tbl;
             dataGridView1.Enabled    = true;
         }
         else
         {
             MessageBox.Show("Không sửa được khách hàng ! Vui lòng thử lại !", "Lỗi ", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
 }