/*private void EditStudent()
         * {
         *  if (_Student != null && _StudentForm.ShowDialog(_Student) == DialogResult.OK)
         *  {
         *      if (cboStudentType.SelectedIndex == 0)
         *      {
         *          lblStudent.Text = "MOE Student:\n" + _Student.ToString();
         *
         *      }
         *      else if (cboStudentType.SelectedIndex == 1)
         *      {
         *          lblStudent.Text = "TOP Student:\n" + _Student.ToString();
         *      }
         *      else
         *      {
         *          lblStudent.Text = "International Student:\n" + _Student.ToString();
         *      }
         *  }
         * }*/

        private void EditStudent(ClsStudent prStudent)
        {
            if (prStudent != null && prStudent.ViewEdit())
            {
                _Student = prStudent;
                if (cboStudentType.SelectedIndex == 0)
                {
                    lblStudent.Text = "MOE Student:\n" + _Student.ToString();
                }
                else if (cboStudentType.SelectedIndex == 1)
                {
                    lblStudent.Text = "TOP Student:\n" + _Student.ToString();
                }
                else
                {
                    lblStudent.Text = "International Student:\n" + _Student.ToString();
                }
            }
        }