Example #1
0
 public FormAddStudent(long id_group, string nameGroup, long id_specialization, FormGroupAndStudent parentForm)
 {
     this.parentForm        = parentForm;
     this.id_group          = id_group;
     this.id_specialization = id_specialization;
     this.semester          = Program.GetNumKurs(nameGroup) * 2;
     InitializeComponent();
 }
        private void учебныеГруппыToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormGroupAndStudent form = new FormGroupAndStudent();

            form.ShowDialog();
        }
Example #3
0
 public FormAddGroup(FormGroupAndStudent parentForm)
 {
     InitializeComponent();
     this.parentForm = parentForm;
 }