C#大作业学生成绩管理系统_第1页
C#大作业学生成绩管理系统_第2页
C#大作业学生成绩管理系统_第3页
C#大作业学生成绩管理系统_第4页
C#大作业学生成绩管理系统_第5页
已阅读5页,还剩10页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、精选优质文档-倾情为你奉上c#程序设计大作业 题目:学生成绩管理系统 班级: 学号: 姓名: 小组成员分工:姓名分工汪依清: StuIfoupdate Login傅勤珍: Other Rank斯王春: StuIfoSearch Mainframe黄成烽: StuIfoChange CourseEnter吴凯: StuoIfoEnter ScoreEnter朱隆震: CurChoice ScoreUpdate洪彬: Other2 学生成绩管理系统-主界面的设计和学生信息查询主界面的设计: 主界面设计要求简单明了,能把系统的所有功能展现在主界面上面,能让人方便的查询学生的各种信息,包括系统管理、学

2、生信息管理、课程信息管理、成绩信息管理、选课信息管理、特殊情况管理等功能,不仅如此,界面的设计也要美观大方,这样很好的实现了人机交互。学生信息查询:1.1功能(1) 根据查询条件实现学生信息的查询(2) 学生选课信息查询、成绩信息的查询(3) 学生信息、课程信息、成绩信息的增加、删除、修改(4) 对基本信息完成增加、删除、修改时,需注意表与表之间的关联1.2功能需求分析 学生信息查询:学生可以根据学号、姓名、专业进行查询.1.3软件环境需求利用Visual Studio 2010作为前台开发工具,后台SQL数据库管理实现学生成绩管理系统。设计2.1学生信息查询模块学生信息查询:学生可以根据学号

3、、姓名、班级、学院进行查询。学生信息查询班级查询学院查询姓名查询学号查询2.2学生信息内容学生的信息包括学号,姓名,性别,民族,班级,院系,出生日期,政治面貌。学 生 信 息性别学号姓名政治面貌出生日期院系班级民族 3.数据库设计 本系统的数据库是SQL server数据库,在SQL环境下创建数据库学生管理系统文件。根据以上模块划分图分析,针对学生信息管理系统,分别对个人基本信息、选课、成绩进行详细的研究分析。数据库的设计采用一库多表式设计。即设计了一个用户登录,添加学生信息,数据库中对学生的信息加入基础的添加、查询、修改和删除。该数据库包括Student、Score、Other、Course

4、、Choice、User列表。本人负责部分为后用户信息“Student”表。以下是数据库的表清单:User表:Student表:Score表:Other表:Course表:Choice表:4. 测试:主界面:学生信息查询:主要功能代码:Mainframe代码:namespace StudentIfoMag public partial class MainFrm : Form public MainFrm() InitializeComponent(); private void 退出ToolStripMenuItem_Click(object sender, EventArgs e) thi

5、s.Close(); private void 学生信息录入ToolStripMenuItem_Click(object sender, EventArgs e) StuIfoEnter ent = new StuIfoEnter(); ent.MdiParent = this; ent.Show(); tssStu.Text = ent.Text; private void 学生信息更新ToolStripMenuItem_Click(object sender, EventArgs e) StuIfoSearch ser = new StuIfoSearch(); ser.MdiParent

6、 = this; ser.Show(); tssStu .Text = ser.Text; private void 学生信息更新ToolStripMenuItem1_Click(object sender, EventArgs e) StuIfoUpdate upt = new StuIfoUpdate(); upt.MdiParent = this; upt.Show(); tssStu.Text = upt.Text; private void 课程信息录入ToolStripMenuItem_Click(object sender, EventArgs e) CourseEnter en

7、 = new CourseEnter(); en.MdiParent = this; en.Show(); tssStu.Text = en.Text; private void 成绩录入ToolStripMenuItem_Click(object sender, EventArgs e) ScoreEnter enter = new ScoreEnter(); enter.MdiParent = this; enter.Show () ; tssStu.Text = enter.Text; private void 成绩更新ToolStripMenuItem_Click(object sen

8、der, EventArgs e) ScoreUpdate up = new ScoreUpdate(); up.MdiParent = this; up.Show(); tssStu.Text = up.Text; private void 成绩排名ToolStripMenuItem_Click(object sender, EventArgs e) Rank ra = new Rank(); ra.MdiParent = this; ra.Show(); tssStu.Text = ra.Text; private void 班级选课ToolStripMenuItem_Click(obje

9、ct sender, EventArgs e) CurChoice ch = new CurChoice(); ch.MdiParent = this; ch.Show(); tssStu.Text = ch.Text; private void 留级休学ToolStripMenuItem_Click(object sender, EventArgs e) Other oth = new Other(); oth.MdiParent = this; oth.Show(); tssStu.Text = oth.Text; private void 留级ToolStripMenuItem_Clic

10、k(object sender, EventArgs e) Other2 the = new Other2(); the.MdiParent = this; the.Show(); tssStu.Text = the.Text; 学生信息查询代码:namespace StudentIfoMag public partial class StuIfoSearch : Form public StuIfoSearch() InitializeComponent(); private void StuIfoSearch_Load(object sender, EventArgs e) comboBo

11、x1.SelectedIndex = 0; / TODO: 这行代码将数据加载到表“studentIfoMagDataSet.Student”中。您可以根据需要移动或移除它。 / this.studentTableAdapter.Fill(this.studentIfoMagDataSet.Student); private void button1_Click(object sender, EventArgs e) string connString = Data Source=.SQLEXPRESS;AttachDbFilename=E:汪依清大三C#STUDENTINFORMATIONM

12、AGStudentIfoMag.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True; SqlConnection connection = new SqlConnection(connString); if (textBox1.Text = ) /未输入查询条件时显示全部内容 string sql = String.Format(select * from Student); /SQL语句 try connection.Open(); /打开数据库连接 SqlDataAdapter adapter = new S

13、qlDataAdapter(sql, connection); DataSet DS = new DataSet(); adapter.Fill(DS, Student); dataGridView1.DataSource = DS.TablesStudent; catch (SqlException ex) /数据库出错情况 MessageBox.Show(ex.Message, 操作数据库出错!, MessageBoxButtons.OK, MessageBoxIcon.Error); finally connection.Close(); /关闭数据库情况 else /输入了查询条件 s

14、tring sql; switch (comboBox1.SelectedItem.ToString() case 学号: sql = String.Format(select * from Student where studentNo = 0 , textBox1.Text); try connection.Open(); /打开数据库连接 DataSet DS = new DataSet(); SqlDataAdapter adapter = new SqlDataAdapter(sql, connection); adapter.Fill(DS, Student); dataGridV

15、iew1.DataSource = DS.TablesStudent; if (DS.Tables0.Rows.Count = 0) /如果未查询到任何信息,给出提示,并显示全部信息 MessageBox.Show(没有查到相关信息,请检查查询条件!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); catch (SqlException ex) /数据库出错情况 MessageBox.Show(ex.Message, 操作数据库出错!, MessageBoxButtons.OK, MessageBoxIcon.Error); fi

16、nally connection.Close(); /关闭数据库连接 break; case 姓名: sql = String.Format(select * from Student where convert(nvarchar(255),studentName) LIKE %0% , textBox1.Text); try connection.Open(); /打开数据库连接 DataSet DS = new DataSet(); SqlDataAdapter adapter = new SqlDataAdapter(sql, connection); adapter.Fill(DS,

17、Student); dataGridView1.DataSource = DS.TablesStudent; if (DS.Tables0.Rows.Count = 0) /如果未查询到任何信息,给出提示,并显示全部信息 MessageBox.Show(没有查到相关信息,请检查查询条件!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); catch (SqlException ex) /数据库出错情况 MessageBox.Show(ex.Message, 操作数据库出错!, MessageBoxButtons.OK, Messag

18、eBoxIcon.Error); finally connection.Close(); /关闭数据库连接 break; case 班级: sql = String.Format(select * from Student where convert(nvarchar(255),studentClass) = 0 , textBox1.Text); try connection.Open(); /打开数据库连接 DataSet DS = new DataSet(); SqlDataAdapter adapter = new SqlDataAdapter(sql, connection); ad

19、apter.Fill(DS, Student); dataGridView1.DataSource = DS.TablesStudent; if (DS.Tables0.Rows.Count = 0) /如果未查询到任何信息,给出提示,并显示全部信息 MessageBox.Show(没有查到相关信息,请检查查询条件!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); catch (SqlException ex) /数据库出错情况 MessageBox.Show(ex.Message, 操作数据库出错!, MessageBoxBut

20、tons.OK, MessageBoxIcon.Error); finally connection.Close(); /关闭数据库连接 break; case 学院: sql = String.Format(select * from Student where convert(nvarchar(255),studentAcademy) LIKE %0% , textBox1.Text); try connection.Open(); /打开数据库连接 DataSet DS = new DataSet(); SqlDataAdapter adapter = new SqlDataAdapte

21、r(sql, connection); adapter.Fill(DS, Student); dataGridView1.DataSource = DS.TablesStudent; if (DS.Tables0.Rows.Count = 0) /如果未查询到任何信息,给出提示,并显示全部信息 MessageBox.Show(没有查到相关信息,请检查查询条件!, 提示, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); catch (SqlException ex) /数据库出错情况 MessageBox.Show(ex.Message, 操

22、作数据库出错!, MessageBoxButtons.OK, MessageBoxIcon.Error); finally connection.Close(); /关闭数据库连接 break; private void button3_Click(object sender, EventArgs e) this.Close(); private void button2_Click(object sender, EventArgs e) string connString = Data Source=.SQLEXPRESS;AttachDbFilename=E:汪依清大三C#STUDENTINFORM

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论