private void Xoa_Click(object sender, EventArgs e) { if (XtraMessageBox.Show("Bạn có chắc muốn xóa không", "Cảnh báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { string dulieu = gridView1.GetRowCellValue(gridView1.FocusedRowHandle, colIDNhaCungCap).ToString(); nccCtr.DelData(dulieu); gridView1.DeleteSelectedRows(); MessageBox.Show(PrintRibbon.xoathanhcong); } }
private void btnXoa_Click(object sender, EventArgs e) { DialogResult dr = MessageBox.Show("Bạn chắc chắn muốn xóa nhà cung cấp này?", "Xác nhận xóa", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dr == DialogResult.Yes) { if (nccCtr.DelData(txtMaNCC.Text.Trim())) { MessageBox.Show("Xóa thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Xóa không thành công!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } frmNhaCungCap_Load(sender, e); }