实例介绍
系统管理 ·系统登录 ·密码修改 ·注销 ·退出 用户管理。 ·添加管理员 ·管理员密码解锁 ·学生密码解锁 学生信息管理。 ·学生基本信息添加 ·学生基本信息修改 ·学生基本信息删除 课程信息管理。 ·课程基本信息添加 ·课程基本信息修改 ·课程基本信息删除 学生选课管理。 ·根据输入的学号信息,查询出学生基本信息、已选修课程门数、选修总学分。 ·显示课程信息表中的所有课程信息,供用户选课之用。 ·当用户选择某门课程时,除了检查该用户是否已经选择过该课程以外,还要检查课程已选人数是否超过限选人数,超过限选人数则不允许选择该课程。 ·将学生选课信息写入选
【实例截图】
【核心代码】
学生成绩管理系统代码(内含数据库)
└── 学生成绩管理系统代码
└── student
├── database
│ ├── student_log.ldf
│ └── student.mdf
└── StuInfoManage
├── app.config
├── bin
│ └── Debug
│ ├── Microsoft.Office.Interop.Excel.dll
│ ├── StuInfoManage.exe
│ ├── StuInfoManage.exe.config
│ ├── StuInfoManage.pdb
│ ├── StuInfoManage.vshost.exe
│ ├── StuInfoManage.vshost.exe.config
│ └── StuInfoManage.vshost.exe.manifest
├── courseInfo
│ ├── CourseBasicDelete.cs
│ ├── CourseBasicDelete.Designer.cs
│ ├── CourseBasicDelete.resx
│ ├── CourseBasicInfoAdd.cs
│ ├── CourseBasicInfoAdd.Designer.cs
│ ├── CourseBasicInfoAdd.resx
│ ├── CourseBasicInfo.cs
│ ├── CourseBasicInfoQuery.cs
│ ├── CourseBasicInfoQuery.Designer.cs
│ ├── CourseBasicInfoQuery.resx
│ ├── CourseBasicInfoUpdate.cs
│ ├── CourseBasicInfoUpdate.Designer.cs
│ ├── CourseBasicInfoUpdate.resx
│ ├── CourseIDInput.cs
│ ├── CourseIDInput.Designer.cs
│ ├── CourseIDInput.resx
│ ├── CourseInfoQuery.cs
│ ├── CourseInfoQuery.Designer.cs
│ └── CourseInfoQuery.resx
├── DbConn.cs
├── ErrorLog
│ ├── 20110105.txt
│ ├── 20110106.txt
│ ├── 20110107.txt
│ ├── 20110108.txt
│ ├── 20110109.txt
│ ├── 20110110.txt
│ ├── 20110111.txt
│ ├── 20110112.txt
│ └── 20110322.txt
├── gradeInfo
│ ├── CourseGradeInfo.cs
│ ├── CourseGradeInfo.Designer.cs
│ ├── CourseGradeInfoQuery.cs
│ ├── CourseGradeInfoQuery.Designer.cs
│ ├── CourseGradeInfoQuery.resx
│ ├── CourseGradeInfo.resx
│ ├── StuGradeInfo.cs
│ ├── StuGradeInfo.Designer.cs
│ ├── StuGradeInfoQuery1.Designer.cs
│ ├── StuGradeInfoQuery.cs
│ ├── StuGradeInfoQuery.Designer.cs
│ ├── StuGradeInfoQuery.resx
│ └── StuGradeInfo.resx
├── LoginForm.cs
├── LoginForm.Designer.cs
├── LoginForm.resx
├── MainForm.cs
├── MainForm.Designer.cs
├── MainForm.resx
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── ResolveAssemblyReference.cache
│ ├── StuInfoManage.courseInfo.CourseBasicDelete.resources
│ ├── StuInfoManage.courseInfo.CourseBasicInfoAdd.resources
│ ├── StuInfoManage.courseInfo.CourseBasicInfoQuery.resources
│ ├── StuInfoManage.courseInfo.CourseBasicInfoUpdate.resources
│ ├── StuInfoManage.courseInfo.CourseIDInput.resources
│ ├── StuInfoManage.courseInfo.CourseInfoQuery.resources
│ ├── StuInfoManage.csproj.FileListAbsolute.txt
│ ├── StuInfoManage.csproj.GenerateResource.Cache
│ ├── StuInfoManage.exe
│ ├── StuInfoManage.gradeInfo.CourseGradeInfoQuery.resources
│ ├── StuInfoManage.gradeInfo.CourseGradeInfo.resources
│ ├── StuInfoManage.gradeInfo.StuGradeInfoQuery.resources
│ ├── StuInfoManage.gradeInfo.StuGradeInfo.resources
│ ├── StuInfoManage.LoginForm.resources
│ ├── StuInfoManage.MainForm.resources
│ ├── StuInfoManage.pdb
│ ├── StuInfoManage.Properties.Resources.resources
│ ├── StuInfoManage.stuInfo.StuBasicInfoAdd.resources
│ ├── StuInfoManage.stuInfo.StuBasicInfoDelete.resources
│ ├── StuInfoManage.stuInfo.StuBasicInfoQuery.resources
│ ├── StuInfoManage.stuInfo.StuBasicInfoUpdate.resources
│ ├── StuInfoManage.stuInfo.StuIDInput.resources
│ ├── StuInfoManage.stuInfo.StuInfoQuery.resources
│ ├── StuInfoManage.stuInfo.StuSelectCourse.resources
│ ├── StuInfoManage.sysInfo.AdminInfoAdd.resources
│ ├── StuInfoManage.sysInfo.ChangePass.resources
│ ├── StuInfoManage.sysInfo.DepartBasicInfo.resources
│ ├── StuInfoManage.sysInfo.PassAdmin.resources
│ ├── StuInfoManage.sysInfo.PassStu.resources
│ └── TempPE
│ ├── gradeInfo.StuGradeInfoQuery1.Designer.cs.dll
│ ├── Properties.Resources.Designer.cs.dll
│ └── studentDataSet.Designer.cs.dll
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Resources
│ ├── 1058802_1244466945o7J1.jpg
│ ├── beijing.jpg
│ └── login_1025.jpg
├── studentDataSet.Designer.cs
├── studentDataSet.xsc
├── studentDataSet.xsd
├── studentDataSet.xss
├── student_log.ldf
├── student.mdf
├── stuInfo
│ ├── StuBasicInfoAdd.cs
│ ├── StuBasicInfoAdd.Designer.cs
│ ├── StuBasicInfoAdd.resx
│ ├── StuBasicInfo.cs
│ ├── StuBasicInfoDelete.cs
│ ├── StuBasicInfoDelete.Designer.cs
│ ├── StuBasicInfoDelete.resx
│ ├── StuBasicInfoQuery.cs
│ ├── StuBasicInfoQuery.Designer.cs
│ ├── StuBasicInfoQuery.resx
│ ├── StuBasicInfoUpdate.cs
│ ├── StuBasicInfoUpdate.Designer.cs
│ ├── StuBasicInfoUpdate.resx
│ ├── StuIDInput.cs
│ ├── StuIDInput.Designer.cs
│ ├── StuIDInput.resx
│ ├── StuInfoQuery.cs
│ ├── StuInfoQuery.Designer.cs
│ ├── StuInfoQuery.resx
│ ├── StuSelectCourse.cs
│ ├── StuSelectCourse.Designer.cs
│ └── StuSelectCourse.resx
├── StuInfoManage.csproj
├── StuInfoManage.csproj.user
├── StuInfoManage.sln
├── StuInfoManage.suo
├── sysInfo
│ ├── AdminInfoAdd.cs
│ ├── AdminInfoAdd.Designer.cs
│ ├── AdminInfoAdd.resx
│ ├── ChangePass.cs
│ ├── ChangePass.Designer.cs
│ ├── ChangePass.resx
│ ├── DepartBasicInfo.cs
│ ├── DepartBasicInfo.Designer.cs
│ ├── DepartBasicInfo.resx
│ ├── PassAdmin.cs
│ ├── PassAdmin.Designer.cs
│ ├── PassAdmin.resx
│ ├── PassStu.cs
│ ├── PassStu.Designer.cs
│ └── PassStu.resx
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
17 directories, 153 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论