/// <summary> /// Display a form to collect the information for column reinforcement creation /// </summary> /// <returns>true if the informatin collection is successful, otherwise false</returns> protected override bool DisplayForm() { // Display ColumnFramReinMakerForm for the user input information using (ColumnFramReinMakerForm displayForm = new ColumnFramReinMakerForm(this)) { if (DialogResult.OK != displayForm.ShowDialog()) { return(false); } } return(base.DisplayForm()); }
/// <summary> /// Display a form to collect the information for column reinforcement creation /// </summary> /// <returns>true if the informatin collection is successful, otherwise false</returns> protected override bool DisplayForm() { // Display ColumnFramReinMakerForm for the user input information using (ColumnFramReinMakerForm displayForm = new ColumnFramReinMakerForm(this)) { if (DialogResult.OK != displayForm.ShowDialog()) { return false; } } return base.DisplayForm(); }