private void btnQLNCC_Xoa_Click(object sender, EventArgs e) { DialogResult h; { 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) { t_BUS.deleMaHoaDon(txtMaNhaCC.Text); bool t = nccBUS.deleteNhaCC(txtMaNhaCC.Text); if (t == true) { MessageBox.Show("Xóa Thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); LoadData_NCC(); } else { MessageBox.Show("Thất bại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); } } } restTxtT(); grTTKH_ThongTin.Enabled = false; errorProvider1.Clear(); }