Example #1
0
 private void btn_edit_Click(object sender, EventArgs e)
 {
     curr_index = listBox1.SelectedIndex;
     GroupAddEditForm gr_add = new GroupAddEditForm(this);
     gr_add.Owner = this;
     gr_add.ShowDialog();
 }
Example #2
0
 private void btn_add_Click(object sender, EventArgs e)
 {
     curr_index = -1;
     GroupAddEditForm gr_add = new GroupAddEditForm(this);
     gr_add.Owner = this;
     gr_add.ShowDialog();
 }