private void btnxoa_Click(object sender, EventArgs e) { string err = ""; DialogResult result = MessageBox.Show("Bạn có chắc muốn xóa không ???", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { if (!db.deleteDiem(ref err, txtMaSinhVien.Text, txtMaMonHoc.Text)) { MessageBox.Show(err); } else { DataBind(); MessageBox.Show("xóa thành công."); } } }