考勤管理系统的开发.doc
约40页DOC格式手机打开展开
考勤管理系统的开发,1.6万字自己原创的毕业设计,今年最新的,仅在本站独家提交,大家放心使用摘要 随着现代科学技术的发展,许多企业的规模日益壮大,对员工考勤信息管理也提出了更高的要求。传统的考勤管理主要依靠手工、半手工方式,效率低且准确性不高,越来越多的公司和企业对员工考勤都实行了信息化管理,使用计算机系统代替复杂的手工...
内容介绍
此文档由会员 jiji888 发布
考勤管理系统的开发
1.6万字
自己原创的毕业设计,今年最新的,仅在本站独家提交,大家放心使用
摘要 随着现代科学技术的发展,许多企业的规模日益壮大,对员工考勤信息管理也提出了更高的要求。传统的考勤管理主要依靠手工、半手工方式,效率低且准确性不高,越来越多的公司和企业对员工考勤都实行了信息化管理,使用计算机系统代替复杂的手工方式来管理考勤事务。因此,开发一个界面友好,易于操作的员工信息管理软件进行自动化处理具有较大的现实意义。
系统的开发主要包括后台数据库的建立,维护以及前端应用程序的开发两个方面,主要模块包括登录模块,考勤信息管理模块,统计查询模块,员工信息管理模块和系统设置模块。系统是使用Visual C++开发语言,使用Microsoft Visual C++ 6.0作为工具软件,数据库为Access 2010。系统采用目前比较流行的ODBC数据访问技术,并将每个数据库表的字段和操作封装到类中,它使应用程序的各个窗口都能够共享对表的操作,不需要重复编码,使程序更加易于维护,从而将面向对象的程序设计思想应用到数据库应用程序中。
本考勤系统成本低廉、易于操作,交互性强,避免人力物力的浪费,保证数据信息的准确性和安全性。能有效地统计公司员工的出勤情况,规范人事管理制度,保证公司正常的工作秩序,具有较高的实用价值。
关键词:Visual C++ Access MFC 考勤管理 ODBC数据访问
The Development of Attendance Management System Based on VC++
Abstract With the development of modern science and technology, many enterprise scale keep growing, at the same time it put forward higher requirements to the management of the employees' attendance information.Traditional attendance management mainly rely on manual, half manual approach, it has low efficiency and the accuracy , so a growing number of companies and enterprises realize informatization management of the employees' attendance, they use computer system to replace the complex manual approach to finish the job. Therefore, to develop a friendly interface, easily operation staff information management software for automated processing has a great practical significance.
System mainly includes the establishment of the background database,front-end application maintenance and development of two main modules,including the login module,attendance information management module,statistical query module, employee information management module and system Settings module.System is to use Visual C++ development language,the use of Microsoft Visual Studio 6.0 as a tool for software,database for Access 2010.System is currently more popular ODBC data access technology,and database tables for each of the field and operation of the class package,which allows applications to share all the various windows on the operation table,do not need to duplicate code,so that procedures more easy to maintain,so that object-oriented programming design concepts applied to database applications.
The attendance system has the advantages of low cost, easy operation,strong interactivity, avoid the waste of human and material resources and ensure the accuracy and safety of data information. It can statistic the attendance of the staff effectively , standardize the personnel management and maintain the the normal work order,.The attendance management system has high practical value.
Key words: Visual C++ Access MFC attendance management ODBC data access
目 录
第一章 绪论 1
1.1 项目开发的背景及意义 1
1.2 项目开发现状与发展趋势 2
1.3 论文结构 3
第二章 管理信息系统及关键技术分析 4
2.1 管理信息系统 4
2.1.1 基本概念 4
2.1.2 管理信息系统的开发方法 4
2.2 数据库概述 5
2.2.1 数据库的基本概念 5
2.2.2 关系数据库 6
2.2.3 Access数据库 7
2.3 数据库设计的基本步骤 7
2.4 ODBC的数据库访问技术 8
2.5 Visual C++介绍 10
第三章 考勤管理系统的需求分析 11
3.1 系统功能需求分析 11
3.2 系统业务流程分析 13
3.3 系统数据流图 14
3.4 可行性分析 14
3.4.1 技术方面 14
3.4.2 经济方面 15
第四章 考勤管理系统的设计 16
4.1 系统技术架构设计 16
4.2 系统功能设计 17
4.3 系统数据库设计 19
4.3.1 概念结构设计 19
4.3.2 逻辑结构设计 22
第五章 考勤管理系统的实现 26
5.1 系统登录界面 26
5.2 管理员模块 27
5.3 普通员工模块 31
第六章 性能测试与分析 32
6.1 测试实例的研究与选择 32
6.2 测试环境与测试条件 33
6.3 实例测试 33
6.4 测试结果 33
结 论 34
致 谢 35
参考文献 36
1.6万字
自己原创的毕业设计,今年最新的,仅在本站独家提交,大家放心使用
摘要 随着现代科学技术的发展,许多企业的规模日益壮大,对员工考勤信息管理也提出了更高的要求。传统的考勤管理主要依靠手工、半手工方式,效率低且准确性不高,越来越多的公司和企业对员工考勤都实行了信息化管理,使用计算机系统代替复杂的手工方式来管理考勤事务。因此,开发一个界面友好,易于操作的员工信息管理软件进行自动化处理具有较大的现实意义。
系统的开发主要包括后台数据库的建立,维护以及前端应用程序的开发两个方面,主要模块包括登录模块,考勤信息管理模块,统计查询模块,员工信息管理模块和系统设置模块。系统是使用Visual C++开发语言,使用Microsoft Visual C++ 6.0作为工具软件,数据库为Access 2010。系统采用目前比较流行的ODBC数据访问技术,并将每个数据库表的字段和操作封装到类中,它使应用程序的各个窗口都能够共享对表的操作,不需要重复编码,使程序更加易于维护,从而将面向对象的程序设计思想应用到数据库应用程序中。
本考勤系统成本低廉、易于操作,交互性强,避免人力物力的浪费,保证数据信息的准确性和安全性。能有效地统计公司员工的出勤情况,规范人事管理制度,保证公司正常的工作秩序,具有较高的实用价值。
关键词:Visual C++ Access MFC 考勤管理 ODBC数据访问
The Development of Attendance Management System Based on VC++
Abstract With the development of modern science and technology, many enterprise scale keep growing, at the same time it put forward higher requirements to the management of the employees' attendance information.Traditional attendance management mainly rely on manual, half manual approach, it has low efficiency and the accuracy , so a growing number of companies and enterprises realize informatization management of the employees' attendance, they use computer system to replace the complex manual approach to finish the job. Therefore, to develop a friendly interface, easily operation staff information management software for automated processing has a great practical significance.
System mainly includes the establishment of the background database,front-end application maintenance and development of two main modules,including the login module,attendance information management module,statistical query module, employee information management module and system Settings module.System is to use Visual C++ development language,the use of Microsoft Visual Studio 6.0 as a tool for software,database for Access 2010.System is currently more popular ODBC data access technology,and database tables for each of the field and operation of the class package,which allows applications to share all the various windows on the operation table,do not need to duplicate code,so that procedures more easy to maintain,so that object-oriented programming design concepts applied to database applications.
The attendance system has the advantages of low cost, easy operation,strong interactivity, avoid the waste of human and material resources and ensure the accuracy and safety of data information. It can statistic the attendance of the staff effectively , standardize the personnel management and maintain the the normal work order,.The attendance management system has high practical value.
Key words: Visual C++ Access MFC attendance management ODBC data access
目 录
第一章 绪论 1
1.1 项目开发的背景及意义 1
1.2 项目开发现状与发展趋势 2
1.3 论文结构 3
第二章 管理信息系统及关键技术分析 4
2.1 管理信息系统 4
2.1.1 基本概念 4
2.1.2 管理信息系统的开发方法 4
2.2 数据库概述 5
2.2.1 数据库的基本概念 5
2.2.2 关系数据库 6
2.2.3 Access数据库 7
2.3 数据库设计的基本步骤 7
2.4 ODBC的数据库访问技术 8
2.5 Visual C++介绍 10
第三章 考勤管理系统的需求分析 11
3.1 系统功能需求分析 11
3.2 系统业务流程分析 13
3.3 系统数据流图 14
3.4 可行性分析 14
3.4.1 技术方面 14
3.4.2 经济方面 15
第四章 考勤管理系统的设计 16
4.1 系统技术架构设计 16
4.2 系统功能设计 17
4.3 系统数据库设计 19
4.3.1 概念结构设计 19
4.3.2 逻辑结构设计 22
第五章 考勤管理系统的实现 26
5.1 系统登录界面 26
5.2 管理员模块 27
5.3 普通员工模块 31
第六章 性能测试与分析 32
6.1 测试实例的研究与选择 32
6.2 测试环境与测试条件 33
6.3 实例测试 33
6.4 测试结果 33
结 论 34
致 谢 35
参考文献 36