欢迎来到天天文库
浏览记录
ID:21867490
大小:57.50 KB
页数:5页
时间:2018-10-25
《基于vfp的自学考试报名系统的设计与实现》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、基于VFP的自学考试报名系统的设计与实现:自学考试报名系统使用VisualFoxPro作为开发工具,主要实现对考生报考信息的录入管理,克服了全国自学考试考务考籍管理系统在录入报考信息时效率低下的缺点,极大地提高了报考信息录入的效率,使报名工作规范、准确、简便、高效,该论文主要阐述了自学考试考生报名系统的设计思想和实现技术。 关键词:VFP;数据库;报名 :TP311:A:1009-3044(2011)18-4278-03 ARegistrationSystemonSelf-studyExaminationBasedonVFP LIPeng (HefeiEducationExa
2、minationsAuthority,Hefei230061,China) Abstract:Theregistrationsystemonself-studyexaminationuseVisualFoxProasdevelopmenttools.Itrealizestheregistrationofexamineefortheself-studyexamination.Itoveretheshortingsontheinputofthemanagementinformationsystemontheself-studyexamination.Itisgreatlyimproved
3、fortheefficiencyentinformationsarerecorded.Itmaketheainlyexpoundsthedesignideaandthetechnologyoftheregistrationsystemonself-studyexamination. Key.check1.value=1//判断是否是新生 thisform.text2.setfocus//若是新生则依次跳到姓名、性别、身份证输入框,输入考生信息,若是老生,姓名、性别、身份证输入框为只读 else ifthisform.text1.value<>'' sele1 l
4、ocaforks_zkz=thisform.text1.value//根据录入的准考证号自动查询出考生信息 iffound() thisform.text2.value=ks_xm thisform.text3.value=ks_xb thisform.text4.value=ks_sfz thisform.text5.readonly=.f. else messagebox("准考证号"+thisform.text1.value+"输入错误,无此考生!") thisform.text1.value='' endif endif endif文本框text5(课程代
5、码1)的LostFocus事件代码如下: ifthisform.text5.value<>'' sele3 locaforkcbm=thisform.text5.value//根据录入的课程代码自动查询出课程信息 iffound() thisform.label5.caption=kc_mc thisform.label6.caption=kksj k1=kksj b1=bmf thisform.text6.readonly=.f. else messagebox("课程代码"+thisform.text5.value+"输入错误!") thisfo
6、rm.text5.value='' endif else thisform.label5.caption='' thisform.label6.caption='' endif thisform.refresh 文本框text6(课程代码2)的LostFocus事件代码如下: ifthisform.text6.value<>'' sele3 locaforkcbm=thisform.text6.value//根据录入的课程代码自动查询出课程信息 iffound() thisform.label7.caption=kc_mc thisform.lab
7、el8.caption=kksj k2=kksj ifk2=k1//判断报考课程的时间是否冲突 messagebox("报考课程"+thisform.text6.value+"和前面报考的课程时间冲突!") thisform.text6.value='' thisform.label7.caption='' thisform.label8.caption='' else b2=bmf thisform.text7.readon
此文档下载收益归作者所有