private void btnAdd_Click(object sender, EventArgs e) { FrmAddCustoms frmAdd = new FrmAddCustoms(null, 0, _userInfo, this); frmAdd.MdiParent = this.MdiParent; frmAdd.Show(); }
private void grvCustoms_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { try { if (this.grvCustoms.SelectedRows.Count > 0) { int selectedIndex = grvCustoms.SelectedRows[0].Index; // gets the RowID from the first column in the grid var customsCode = grvCustoms[0, selectedIndex].Value.ToString(); tblCustom customs = CustomsFacory.FindByCode(customsCode); if (customs == null) { MessageBox.Show("Đơn vị hải quan 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; } FrmAddCustoms frmAddCustoms = new FrmAddCustoms(customsCode, 1, _userInfo, this); frmAddCustoms.MdiParent = this.MdiParent; frmAddCustoms.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()); } }