private void buttonProductInfoEdit_Click(object sender, EventArgs e) { Log("buttonProductInfoEdit_Click"); try { var newMDIChild = new CrudeProductInfoEdit(); newMDIChild.MdiParent = this.MdiParent; CheckForm(newMDIChild); newMDIChild.ShowAsEdit((System.Guid)dataGridViewProductInfo.CurrentRow.Cells["ProductInfoId"].Value); } catch (Exception ex) { Error("buttonProductInfoEdit_Click", ex); } }
// shows the detailed version of the selected grid row, in edit modus // links: // docLink: http://sql2x.org/documentationLink/c778f8fe-1b09-4755-891f-f9d3126d1b85 private void buttonCrudeProductInfoEdit_Click(object sender, EventArgs e) { try { var editForm = new CrudeProductInfoEdit(); editForm.MdiParent = this.MdiParent; editForm.ShowAsEdit((System.Guid)dataGridViewCrudeProductInfo.CurrentRow.Cells["ProductInfoId"].Value); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }