学生学籍管理系统的设计与实现毕业论文 下载本文

(此文档为word格式,下载后您可任意编辑修改!)

知识不仅是指课本的内容,还包括社会经验、文明文化、时代精神等整体要素,才有竞争力,知识是新时代的资本,五六十年代人靠勤劳可以成事;今天的香港要抢知识,要以知识取胜

本科毕业设计论文

题 目 学生学籍管理系统的设计与实现 学 院 长安学院 专 业 软件工程 学生姓名 马珊珊 导师姓名 李宏强 摘要

随着信息技术在管理上越来越深入而广泛的应用 管理信息系统的实施在技术上已逐步成熟 管理信息系统是一个不断发展的新型学科 任何一个单位要生存要发展

要高效率地把内部活动有机地组织起来

就必须建立与自身特点相适应的管理信息系统

本文介绍了在Visual Basic6.0环境下采用\自上而下地总体规划 自下而上地应用开发\的策略开发一个管理信息系统的过程 通过分析某一学校学生管理的不足

创建了一套行之有效的计算机管理学生学籍的方案 文章介绍了学生管理信息系统的系统分析部分

包括可行性分析、业务流程分析等;系统设计部分主要介绍了系统功能设计和数据库设计及代码设计;系统实现部分说明了几个主要模块的算法 本系统界面友好 操作简单 比较实用

1 【关键字】:

管理信息系统、ACCESS 2003、学生管理、Visual Basic应用

Summary

With more and more widespread and profound application of information technology in management

the implement of management information system is a new subject. Enterprise needs existence and development

so enterprise activities should be organized efficiently and organically

which means tightening up the enterprise management and strengthening effective management of any resource (staff finance property

etc.) internal the enterprise

and also establishing a management information system fitting in with its own characteristics.

This article introduces the detailed process of exploring a management information system under the environment of visual basic

utilizing \overall plan and a strategy according to \application and exploitation. That is to establish a set of effective scheme for student management by computer

through analyzing disadvantages of student management by analysis section of student management information includes feasible analysis

management function analysis .The system design section mainly focuses on system function design and data base design and data number design. And the system realization section 学生档案 同时

将桌面的Data Grid控件选中 在属性框中

将它的DataSoure设为Adodc

我们可以设置Data Grid控件的外观:选中该控件 右击

在弹出的快捷菜单中选择\检索字段\在弹出的对话框中单击\确定\这时

表格中出现了表的字段 然后再右击 同样

在弹出的快捷菜单中选择\编辑\

我们就可以所在的表格的宽度进行调整 4.2 系统模块的设计 本系统共包括:

2 欢迎界面 登陆界面

主界面(学生信息管理界面、班级信息管理界面、课程信息管理界面) 学生信息管理界面(查询界面、修改界面、删除界面) 班级信息管理界面(查询界面、修改界面、删除界面) 课程信息管理界面(查询界面、修改界面、删除界面) 4.2.1 欢迎界面(如图4-1所示)

本界面是一个显示欢迎界面没有具体的功能 主要是为了美化系统而设置了这个界面

在设计时我将它设计为点击下鼠标进入到下一界面

(图4-1) 下面为其代码:

Public dl As Integer '定义引出form2的条件 Private Sub Form Click () Form2.Show Unload Form1 End Sub

Private Sub Form Load () dl = 0.1 End Sub

Private Sub Timer1_Timer () If dl = 0.1 Then Form2.Show End If dl = 0 End Sub 关键介绍:

通过增加一个timer控件实现了单击鼠标进入下一界面 4.2.2 登陆界面(如图4-2所示)

本界面的主要功能是为了对系统进行安全性管理 本系统的用户名和密码保存在用户信息表中 本系统根据不同的用户而设置了不同的权限 可以用admin这个默认账号来登陆本系统 (图4-2) 其代码如下:

Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim rs1 As New ADODB.Recordset

Private Sub Command1_Click ()

rs.LockType = adLockOptimistic rs.CursorType = adOpenKeyset rs1.LockType = adLockOptimistic

3