private void btnXoa_Click(object sender, EventArgs e) { try { int r = dgvKhachHang.CurrentCell.RowIndex; string strMaKH = dgvKhachHang.Rows[r].Cells[0].Value.ToString(); DialogResult traloi; traloi = MessageBox.Show("Bạn có muốn xóa không ?", "Question", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (traloi == DialogResult.OK) { dbkh.XoaKhachHang(ref err, strMaKH); LoadData(); MessageBox.Show("Đã xóa xong!!!"); } else { MessageBox.Show("Không thực hiện được việc xóa!!!"); } } catch (SqlException) { MessageBox.Show("Không xóa được lỗi rồi!!!"); } }
private void btnXoa_Click(object sender, EventArgs e) { BLKH = new BLKhachHang(); try { if (txtMa.Text != "") { DialogResult DL = MessageBox.Show("Bạn có muốn xóa mẫu tin này?", "xác nhận", MessageBoxButtons.YesNoCancel); if (DL == DialogResult.Yes) { int r = dgvKhachHang.CurrentCell.RowIndex; if (BLKH.XoaKhachHang(ref err, this.txtMa.Text)) { LoadData(); MessageBox.Show("Đã xóa xong"); } else { MessageBox.Show(err, "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } } else { MessageBox.Show("Bạn chưa nhập ID", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch { MessageBox.Show("Lỗi rồi"); } }
private void btnXoa_Click(object sender, EventArgs e) { try { int r = dgvKH.CurrentCell.RowIndex; string strKH = dgvKH.Rows[r].Cells[0].Value.ToString(); DialogResult traloi; traloi = MessageBox.Show("Chắc xóa mẫu tin này không?", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (traloi == DialogResult.Yes) { dbKH.XoaKhachHang(ref err, strKH); LoadData(); MessageBox.Show("Đã xóa xong!"); } else { MessageBox.Show("Không thực hiện việc xóa mẫu tin!"); } } catch (SqlException) { MessageBox.Show("Không xóa được. Lỗi rồi!"); } }
private void btnXoa_Click(object sender, EventArgs e) { try { int r = dgvKhachHang.CurrentCell.RowIndex; string strKHACHHANG = dgvKhachHang.Rows[r].Cells[0].Value.ToString(); DialogResult traloi; traloi = MessageBox.Show("Chắc xóa mẫu tin này ko?", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (traloi == DialogResult.Yes) { dbKH.XoaKhachHang(ref err, strKHACHHANG); LoadData(); MessageBox.Show("Đã Xóa Xong!"); } else { MessageBox.Show("Ko thực hiện vc xóa mẫu tin!"); } } catch (Exception) { MessageBox.Show("Ko xóa đc. Lỗi r!"); } }
private void deleteToolStripMenuItem_Click(object sender, EventArgs e) { try { string MaKH = txtMaKH.Text; var traloi = MessageBox.Show("Bạn có chắc chắn muốn xóa?", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (traloi == System.Windows.Forms.DialogResult.Yes) { dbKH.XoaKhachHang(MaKH, ref err); LoadData(); MessageBox.Show("Đã xóa mẫu tin!"); } } catch { MessageBox.Show("Đã xảy ra lỗi! Không xóa được mẫu tin."); } }
private void btnXoa_Click(object sender, EventArgs e) { int r = dgv_KHACHHANG.CurrentCell.RowIndex; string strKH = dgv_KHACHHANG.Rows[r].Cells[0].Value.ToString(); DialogResult traloi; traloi = MessageBox.Show("Bạn thực sự muốn xóa?", "Trả lời", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (traloi == DialogResult.OK) { try { dbKH.XoaKhachHang(ref err, strKH); LoadData(); MessageBox.Show("Đã xóa!"); } catch (SqlException) { MessageBox.Show("Lỗi!!! Xóa thất bại!"); } } }