private void btXoaBo_Click(object sender, EventArgs e) { if (MessageBox.Show("Bạn có thực sự muốn xoá độc giả này ra khỏi danh sách không ?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { int id = int.Parse(txtID.Text); if (DocGia.XoaBo(id)) { set_giattri(); MessageBox.Show("Đã xoá thành công", "Thông báo"); } else { MessageBox.Show("Xoá thất bại hãy kiểm tra lại thao tác"); } } }