2022年vfp做的企业人事管理系统教学总结 .pdf
《2022年vfp做的企业人事管理系统教学总结 .pdf》由会员分享,可在线阅读,更多相关《2022年vfp做的企业人事管理系统教学总结 .pdf(21页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、企业人事管理系统第一章 课程设计的题目1.1 数据库技术与应用课程设计的题目本次为期一周的课程设计的题目为设计一个企业人事管理系统。第二章 课程设计的要求及目的2.1 数据库技术与应用课程设计的要求及目的2.1.1课程设计的要求1.符合课题要求,实现相应功能。可以加以其他功能或修饰,使程序更加完善、合理;2.要求界面友好美观,操作方便易行;3.注意程序的实用性、安全性;4.随时记录设计情况(备查,也为编写设计说明书作好准备);2.1.2课程设计的目的本课程设计其目的在于加深对数据库技术与应用的原理和程序的理解、巩固、提高,让学生做到学以致用,把所学的理论知识应用于实际问题的解决、 编制出完整的
2、应用程序, 为以后的实际编制大型的应用软件打下基础。精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 1 页,共 21 页 - - - - - - - - - - 第三章课程设计的说明介绍3.1 数据库技术与应用课程设计的说明介绍先建立职工基本信息表、 职工考核信息表,在数据库中建立关联,以便后面建立表单使用。3.1.1 进入界面“进入”代码如下:do case case thisform.optiongroup1.value=1 do form 管理员登陆界面thisform.release case t
3、hisform.optiongroup1.value=2 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 2 页,共 21 页 - - - - - - - - - - do form 一般用户登陆界面thisform.release endcase “退出”代码如下:quit 3.1.2 登录界面“确定”代码如下:*设置密码不能为空,如允许为空则不需此步骤If Len(Alltrim(Thisform.text2.Value)=0 Messagebox( 请输入用户名或密码! ) Return 精品资料
4、- - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 3 页,共 21 页 - - - - - - - - - - Endif Use gly.dbf Locate For Alltrim( 用户名 )=Alltrim(Thisform.text1.Value) *如果没有找到相同记录时执行下面代码If Eof() Use Messagebox( 没有此用户! ) Thisform.text1.Value= Thisform.text2.Value= Thisform.text1.SetFocus i=i+1 if i=
5、3 messagebox( 密码或用户名错,请重新输入!) thisform.text2.value= thisform.text2.setfocus else Messagebox( 连续三次输入错误,系统将退出!) Use Quit Endif Return ENDIF 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 4 页,共 21 页 - - - - - - - - - - *找到后执行的动做If Alltrim(Thisform.text2.Value)=Alltrim(密码) Mesagebo
6、x( 可以进入!,信息窗口) do form 管理界面thisform.release *在这里添加在正确登录后你要继续执行的程度Else Use Messagebox( 密码错误! ) Thisform.text2.Value= Thisform.text2.SetFocus i=i+1 if i=3 messagebox( 密码错,请重新输入 !) thisform.text2.value= thisform.text2.setfocus else Messagebox( 连续三次输入错误,系统将退出!) Use Quit Endif Return 精品资料 - - - 欢迎下载 - -
7、- - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 5 页,共 21 页 - - - - - - - - - - ENDIF “取消”代码如下:thisform.text1.value= thisform.text2.value= thisform.refresh “退出”代码如下:do form 进入界面thisform.release3.1.3 管理员功能界面3.1.3.1 添加信息界面精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 6 页,共 21 页
8、- - - - - - - - - - “添加”代码如下:use 职工信息表append blank thisform.txt 职工号 .readonly=.f. thisform.txt 姓名.readonly=.f. thisform.txt 性别.readonly=.f. thisform.txt 学历.readonly=.f. thisform.txt 籍贯.readonly=.f. thisform.txt 出生日期 .readonly=.f. thisform.txt 政治面貌 .readonly=.f. thisform.txt 所属部门 .readonly=.f. 精品资料 -
9、 - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 7 页,共 21 页 - - - - - - - - - - thisform.txt 进公司年份 .readonly=.f. thisform.txt 婚姻状况 .readonly=.f. thisform.edt 简历 2.readonly=.f. thisform.txt 职工号 .setfocus thisform.refresh “保存”代码如下:m=messagebox( 是否保存? ,4+48,信息窗口 ) if m=6 messagebox( 信息已保存
10、 ,48,信息窗口 ) else delete pack endif thisform.txt 职工号 .readonly=.t. thisform.txt 姓名.readonly=.t. thisform.txt 性别.readonly=.t. thisform.txt 学历.readonly=.t. thisform.txt 籍贯.readonly=.t. thisform.txt 出生日期 .readonly=.t. thisform.txt 政治面貌 .readonly=.t. thisform.txt 所属部门 .readonly=.t. thisform.txt 进公司年份 .re
11、adonly=.t. 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 8 页,共 21 页 - - - - - - - - - - thisform.txt 婚姻状况 .readonly=.t. thisform.edt 简历 2.readonly=.t. thisform.txt 职工号 .setfocus thisform.refresh “退出”代码如下:thisform.release 3.1.3.2 修改信息可进行修改并保存, 同时通过查找所要修改的记录,方便管理员修改。“修改”代码如下:use
12、 职工信息表精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 9 页,共 21 页 - - - - - - - - - - thisform.txt 职工号.readonly=.f. thisform.txt 姓名.readonly=.f. thisform.txt 性别.readonly=.f. thisform.txt 学历.readonly=.f. thisform.txt 籍贯.readonly=.f. thisform.txt 出生日期 .readonly=.f. thisform.txt 政治面
13、貌 .readonly=.f. thisform.txt 所属部门 .readonly=.f. thisform.txt 进公司年份 .readonly=.f. thisform.txt 婚姻状况 .readonly=.f. thisform.edt 简历 2.readonly=.f. thisform.txt 职工号.setfocus“保存”代码如下:m=messagebox( 是否保存? ,4+48,信息窗口 ) if m=6 messagebox( 信息已保存 ,48,信息窗口 ) thisform.txt 职工号.readonly=.t. thisform.txt 姓名.readonl
14、y=.t. thisform.txt 性别.readonly=.t. thisform.txt 学历.readonly=.t. thisform.txt 籍贯.readonly=.t. thisform.txt 出生日期 .readonly=.t. 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 10 页,共 21 页 - - - - - - - - - - thisform.txt 政治面貌 .readonly=.t. thisform.txt 所属部门 .readonly=.t. thisform.t
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年vfp做的企业人事管理系统教学总结 2022 vfp 企业 人事管理系统 教学 总结
限制150内