private void buttonProductIdentifierEdit_Click(object sender, EventArgs e)
        {
            Log("buttonProductIdentifierEdit_Click");

            try {
                var newMDIChild = new CrudeProductIdentifierEdit();
                newMDIChild.MdiParent = this.MdiParent;
                CheckForm(newMDIChild);
                newMDIChild.ShowAsEdit((System.Guid)dataGridViewProductIdentifier.CurrentRow.Cells["ProductIdentifierId"].Value);
            } catch (Exception ex) {
                Error("buttonProductIdentifierEdit_Click", ex);
            }
        }
Exemple #2
0
 // shows a form for adding more rows
 // links:
 //  docLink: http://sql2x.org/documentationLink/499f894b-7c95-446b-be0a-57fd47b768e3
 private void buttonCrudeProductIdentifierAdd_Click(object sender, EventArgs e)
 {
     try {
         var editForm = new CrudeProductIdentifierEdit();
         editForm.MdiParent = this.MdiParent;
         editForm.ShowAsAddByRules(_userId);
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
Exemple #3
0
 // 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 buttonCrudeProductIdentifierEdit_Click(object sender, EventArgs e)
 {
     try {
         var editForm = new CrudeProductIdentifierEdit();
         editForm.MdiParent = this.MdiParent;
         editForm.ShowAsEdit((System.Guid)dataGridViewCrudeProductIdentifier.CurrentRow.Cells["ProductIdentifierId"].Value);
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        private void buttonProductIdentifierAdd_Click(object sender, EventArgs e)
        {
            Log("buttonProductIdentifierAdd_Click");

            try {
                var newMDIChild = new CrudeProductIdentifierEdit();
                newMDIChild.MdiParent = this.MdiParent;
                CheckForm(newMDIChild);
                newMDIChild.ShowAsAdd(_productContract.Product.ProductId,
                                      string.Empty,
                                      string.Empty,
                                      _userId
                                      );
            } catch (Exception ex) {
                Error("buttonProductIdentifierAdd_Click", ex);
            }
        }