private void button17_Click(object sender, EventArgs e) { if (listBox4.SelectedIndex == -1) { Classes.App.Error("עליך לבחור קבוצת לימוד מרשימת הקבוצות."); } else { SelectTeacher st = new SelectTeacher(); st.ShowDialog(); if (st.returned.Length > 0) { if (st.returned == Classes.Group.GetInfo(Convert.ToInt32(groups[listBox4.SelectedIndex])).Rows[0]["tid"].ToString()) { Classes.App.Error("המורה שבחרת הוא כבר המורה של הקבוצה הזו."); } else { Classes.SQL.Update("Groups", "`tid` = '" + st.returned + "'", "gid", groups[listBox4.SelectedIndex]); UpdateGroupProperties(); MessageBox.Show("מורה הקבוצה הוחלף בהצלחה.", "ניהול קבוצות לימוד", MessageBoxButtons.OK, MessageBoxIcon.Information); } } st.Dispose(); } }
private void button14_Click(object sender, EventArgs e) { if (listBox1.SelectedIndex == -1) { Classes.App.Error("עליך לבחור כיתה מרשימת הכיתות."); } else { SelectTeacher st = new SelectTeacher(); st.ShowDialog(); if (st.returned.Length > 0) { if (st.returned == Classes.Class.GetInfo(classes[listBox1.SelectedIndex], "tid")) { Classes.App.Error("המורה שבחרת כבר מחנך את הכיתה הזו."); } else { Classes.SQL.Update("Classes", "`tid` = '" + st.returned + "'", "classid", classes[listBox1.SelectedIndex]); UpdateClassProperties(); MessageBox.Show("מחנך הכיתה הוחלף בהצלחה.", "ניהול כיתות", MessageBoxButtons.OK, MessageBoxIcon.Information); } } st.Dispose(); } }