示例#1
0
 //获取考点信息
 public void getPoint(OfficeXML ox)
 {
     try { ox.getAllAnsPath(); }
     catch
     {
         MessageBox.Show("获取考点信息失败!");
         throw;
     }
 }
示例#2
0
 //从xml文件中读出考点
 private void getPoint(OfficeXML ox)
 {
     try { ox.getAllAnsPath(); }
     catch(Exception Ex)
     {
         MessageBox.Show("Get exam point error!");
         throw Ex;
     }
 }