private void btnUpdate_Click(object sender, EventArgs e) { try { if (this.grvGate.SelectedRows.Count > 0) { int selectedIndex = grvGate.SelectedRows[0].Index; // gets the RowID from the first column in the grid var gateCode = grvGate[0, selectedIndex].Value.ToString(); tblGate gate = GateFactory.FindByCode(gateCode); if (gate == null) { MessageBox.Show("Cửa khẩu này không còn tồn tại trong Cơ Sở Dữ Liệu. Bạn hãy kiểm tra lại", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } FrmAddGate frmAddGate = new FrmAddGate(gateCode, 1, _userInfo, this); frmAddGate.MdiParent = this.MdiParent; frmAddGate.Show(); } else { MessageBox.Show("Bạn cần chọn một bản ghi để cập nhật", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch (Exception ex) { logger.Error(ex.ToString()); if (GlobalInfo.IsDebug) MessageBox.Show(ex.ToString()); } }
private void btnAdd_Click(object sender, EventArgs e) { FrmAddGate frmAddGate = new FrmAddGate(null, 0, _userInfo, this); frmAddGate.MdiParent = this.MdiParent; frmAddGate.Show(); }