private void AllStudents_Box_SelectedIndexChanged(object sender, EventArgs e)
 {
     currStudent = Convert.ToInt32(AllStudents_Box.SelectedItem.ToString());
     Fill_Course_Box();
     AllCourses_Box.Show();
     Chosing_a_Course.Show();
 }