// refresh the grid // links: // docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f public void RefreshCrudeCountry() { var country = new CrudeCountryServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = country.FetchWithFilter( Guid.Empty , textBoxCountryCode.Text , textBoxCountryName.Text , Guid.Empty , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeCountry.AutoGenerateColumns = false; dataGridViewCrudeCountry.DataSource = bindingSource; dataGridViewCrudeCountry.AutoResizeColumns(); dataGridViewCrudeCountry.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { country.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 CrudeCountryServiceClient(); try { _contract.CountryCode = textBoxCountryCode.Text; _contract.CountryName = textBoxCountryName.Text; _contract.UserId = (Guid)userPicker.SelectedValue; 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 countryId) { var service = new CrudeCountryServiceClient(); _isNew = false; try { _contract = service.FetchByCountryId(countryId); textBoxCountryCode.Text = _contract.CountryCode; textBoxCountryName.Text = _contract.CountryName; userPicker.SelectedValue = _contract.UserId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } }
// populates the Picker with the first match from the SOAP service // links: // docLink: http://sql2x.org/documentationLink/3e8b9e1a-39eb-444f-9632-ce3406db3534 private void txtCountryCode_Validating(object sender, CancelEventArgs e) { if (!DesignMode) { // empty picker on no code if (string.IsNullOrEmpty(txtCountryCode.Text)) { _countryId = Guid.Empty; txtCountryName.Text = string.Empty; txtCountryCode.Text = string.Empty; return; } CrudeCountryServiceClient country = null; try { country = new CrudeCountryServiceClient(); CrudeCountryContract contract = country.FetchByCountryCode(txtCountryCode.Text); if (contract != null) { txtCountryCode.Text = contract.CountryCode; txtCountryName.Text = contract.CountryName; _countryId = contract.CountryId; } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { if (country != null) { country.Close(); } } if (this.Picked != null) { this.Picked(new object(), new EventArgs()); } } }