// refresh the grid // links: // docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f public void RefreshCrudeProductInfo() { var productInfo = new CrudeProductInfoServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = productInfo.FetchWithFilter( Guid.Empty , Guid.Empty , productInfoRefCombo.Text , textBoxProductInfoValue.Text , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeProductInfo.AutoGenerateColumns = false; dataGridViewCrudeProductInfo.DataSource = bindingSource; dataGridViewCrudeProductInfo.AutoResizeColumns(); dataGridViewCrudeProductInfo.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { productInfo.Close(); } }
// saves the form // links: // docLink: http://sql2x.org/documentationLink/c9522930-91f8-4468-a936-8030bb2a6482 private void buttonSave_Click(object sender, EventArgs e) { var service = new CrudeProductInfoServiceClient(); try { _contract.ProductInfoRcd = productInfoRefCombo.Text; _contract.ProductInfoValue = textBoxProductInfoValue.Text; if (_isNew) { service.Insert(_contract); } else { service.Update(_contract); } } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } Close(); }
// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid productInfoId) { var service = new CrudeProductInfoServiceClient(); _isNew = false; try { _contract = service.FetchByProductInfoId(productInfoId); productInfoRefCombo.Text = _contract.ProductInfoRcd != null ? _contract.ProductInfoRcd : String.Empty; textBoxProductInfoValue.Text = _contract.ProductInfoValue; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } }
// bring up edit form for ProductInfo // links: // docLink: http://sql2x.org/documentationLink/d7ff032d-3bcf-438f-9850-900ca0ebca98 public void ShowAsEdit(System.Guid productInfoId) { var service = new CrudeProductInfoServiceClient(); _isNew = false; try { _contract = service.FetchByProductInfoId(productInfoId); productInfoRefCombo.Text = _contract.ProductInfoRcd != null ? _contract.ProductInfoRcd : String.Empty; textBoxProductInfoValue.Text = _contract.ProductInfoValue; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); RefreshProductInfo(); Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { service.Close(); } }
// save and close ProductInfo // links: // docLink: http://sql2x.org/documentationLink/d71519ff-fa27-4f64-9194-56886e4070ba private void buttonSave_Click(object sender, EventArgs e) { var service = new CrudeProductInfoServiceClient(); try { _contract.ProductInfoRcd = productInfoRefCombo.Text; _contract.ProductInfoValue = textBoxProductInfoValue.Text; if (_isNew) { service.Insert(_contract); } else { service.Update(_contract); } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { service.Close(); } Close(); }