private void buttonStudyFormAdd_Click(object sender, EventArgs e) { var Form = new StudyFormEntityForm(); Form.sf = this; Form.Show(); }
private void buttonStudyFormEdit_Click(object sender, EventArgs e) { try { var sSFId = dataGridViewStudyForm.SelectedCells[0].Value.ToString(); if (String.IsNullOrEmpty(sSFId)) { throw new Exception("Не выбрана форма обучения"); } var Form = new StudyFormEntityForm(); Form.StudyFormId = Int32.Parse(dataGridViewStudyForm.SelectedCells[0].Value.ToString()); Form.sf = this; Form.Show(); } catch (Exception gg) { MessageBox.Show(gg.Message, "SWA", MessageBoxButtons.OK, MessageBoxIcon.Error); } }