private void btlSchoolList_Click(object sender, EventArgs e)
 {
     Utility.SchoolListForm sf = new UpdateRecordModule_SH_D.Utility.SchoolListForm(Utility.SchoolListForm.LoadSchoolType.高中);
     if (sf.ShowDialog() == DialogResult.OK)
     {
         txtSSchool.Text = sf.GetSchoolCode() + sf.GetSchoolName();
     }
 }
 private void btlSchoolList_Click(object sender, EventArgs e)
 {
     Utility.SchoolListForm sf = new UpdateRecordModule_SH_D.Utility.SchoolListForm(Utility.SchoolListForm.LoadSchoolType.國中);
     if (sf.ShowDialog() == DialogResult.OK)
     {
         txtISchool.Text = sf.GetSchoolName();
         txtISpaceCode.Text = sf.GetSchoolLocationCode();
         txtISchoolCode.Text = sf.GetSchoolCode();
     }
 }