采用C# SqlServer CS架构实现的学生选课管理系统,学生选课录入系统,系统采用多层C/S软件架构,采用C#编程语言开发技术实现界面窗口版本的学生管理系统程序界面,实现CS架构窗口事件监听,完成学生选课创建,编辑,删除等。
原文地址
一、程序设计
本次基于C# SqlServer CS架构实现的学生选课管理系统,学生选课录入系统,主要内容涉及:
主要功能模块:学生管理、学生选课新增、学生选课在线编辑、学生选课删除,系统管理,分析统计等等
主要包含技术:C#编程语言,MFC,C#多线程,窗口事件监听,数据库,SQLSERVER,GUI
主要包含算法:其他等
二、效果实现
系统主页
课程管理
其他效果省略
三、核心代码
1.课程添加
本系统添加选课信息,主要采用窗口监听用户操作动作,记录用户输入的课程信息进行校验,校验通过后存入数据库等。
代码语言:java复制private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBox1.Items.Count > 0)
{//清空所有项
listBox1.Items.Clear();
}
if (textBoxclass.Text != "" || textBoxstudent.Text != "")
{
textBoxclass.Text = "";
textBoxstudent.Text = "";
}
string term = comboBox1.SelectedItem.ToString();
Console.WriteLine(term);
SqlConnection conn = new SqlConnection(loginForm.connectionString);
conn.Open();
string sql = "select Cname from Class where Cterm='" term "'";
SqlDataAdapter adp1 = new SqlDataAdapter(sql, conn);
DataSet ds = new DataSet();
adp1.Fill(ds);
//载入基本信息
foreach (DataRow row in ds.Tables[0].Rows)
{
listBox1.Items.Add(row[0].ToString());
}
//dataGridView1.DataSource = ds.Tables[0].DefaultView;
conn.Close();
}
private void class_click(object sender, EventArgs e)
{
if (listBox2.Items.Count > 0)
{//清空所有项
listBox2.Items.Clear();
}
textBoxstudent.Text = "";
if (listBox1.SelectedItem.ToString().Trim() == null) {
MessageBox.Show("请选择课程");
}
string classname = listBox1.SelectedItem.ToString().Trim();
textBoxclass.Text = classname;
SqlConnection conn = new SqlConnection(loginForm.connectionString);
conn.Open();
string sql = "select Student.Sno from Student,Class,SC where Student.Sid=SC.Sid and Class.Cid=SC.Cid and Class.Cname='" classname "'";
SqlDataAdapter adp1 = new SqlDataAdapter(sql, conn);
DataSet ds = new DataSet();
adp1.Fill(ds);
foreach (DataRow row in ds.Tables[0].Rows)
{
listBox2.Items.Add(row[0].ToString());
}
conn.Close();
}
2.系统程序主入口
本系统主入口为系统启动时候执行的加载类,实现系统初始化参数等。
代码语言:java复制 static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new loginForm());
}
}