资源简介
一个基于C# +SQL的学生成绩管理系统。很好很实用哦
代码片段和文件信息
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using CJGL;
namespace Student
{
///
/// Class 的摘要说明。
///
public class Class : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox tbClassName;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button bnSearchAll;
private System.Windows.Forms.Button button4;
BindingManagerbase myBinding;
SqlDataReader dr;
private System.Windows.Forms.Label lbMessage;
private System.Windows.Forms.Button bnForward;
private System.Windows.Forms.Button bnBack;
DataSet ds=new DataSet();
SqlDataAdapter da=new SqlDataAdapter();
DataAccess DataAccess = new DataAccess();
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;
public Class()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//////
string sql=“select SpecialtyName from specialty“;
string item;
dr=DataAccess.GetReader(sql);
while(dr.Read())
{
item=dr.GetString(0);
comboBox1.Items.Add(item);
}
dr.Close();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
///
/// 清理所有正在使用的资源。
///
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.button4 = new System.Windows.Forms.Button();
this.lbMessage = new System.Windows.Forms.Label();
this.bnForward = new System.Windows.Forms.Button();
this.bnBack = new System.Windows.Forms.Button();
this.bnSearchAll = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.tbClassName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(48 32);
this.label1.Name = “label1“;
this.label1.Size = new System.Drawing.Size(120 23);
this.label1.TabIndex = 0;
this.label1.Text = “请选择专业:“;
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// comboBox1
//
this.com
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 272 2006-01-18 13:47 学生成绩管理系统\App.config
文件 323584 2007-08-28 16:36 学生成绩管理系统\bin\Debug\CJGL.exe
文件 272 2006-01-18 13:47 学生成绩管理系统\bin\Debug\CJGL.exe.config
文件 335360 2007-08-28 16:36 学生成绩管理系统\bin\Debug\CJGL.pdb
文件 688 2007-03-28 20:42 学生成绩管理系统\CData\ClassInfoData.cs
文件 2169 2007-03-30 16:58 学生成绩管理系统\CData\ClassInfoOperation.cs
文件 474 2007-04-06 09:10 学生成绩管理系统\CData\Constants.cs
文件 1098 2007-03-31 10:32 学生成绩管理系统\CData\CourseInfoData.cs
文件 2619 2007-04-02 19:29 学生成绩管理系统\CData\CourseInfoOperation.cs
文件 644 2007-03-31 07:57 学生成绩管理系统\CData\CoursescheduleData.cs
文件 2103 2007-03-31 07:57 学生成绩管理系统\CData\CoursescheduleOperation.cs
文件 440 2007-03-28 19:24 学生成绩管理系统\CData\SpecialtyInfoData.cs
文件 1698 2007-03-30 14:52 学生成绩管理系统\CData\SpecialtyOperation.cs
文件 982 2007-03-28 20:50 学生成绩管理系统\CData\StuentInfoData.cs
文件 2364 2007-03-30 14:57 学生成绩管理系统\CData\StuentInfoOperation.cs
文件 1311 2007-04-05 17:01 学生成绩管理系统\CData\StuGradeData.cs
文件 2257 2007-04-02 18:18 学生成绩管理系统\CData\StuGradeOperation.cs
文件 926 2007-03-31 07:57 学生成绩管理系统\CData\TeacherInfoData.cs
文件 1993 2007-03-31 10:49 学生成绩管理系统\CData\TeacherInfoOperation.cs
文件 535 2007-04-06 08:32 学生成绩管理系统\CData\UserInfoData.cs
文件 1997 2007-04-02 15:55 学生成绩管理系统\CData\UserInfoOperation.cs
文件 14711 2007-04-05 16:44 学生成绩管理系统\CJGL.csproj
文件 1804 2007-08-28 16:39 学生成绩管理系统\CJGL.csproj.user
文件 893 2004-12-14 12:38 学生成绩管理系统\CJGL.sln
..A..H. 20480 2007-08-28 16:38 学生成绩管理系统\CJGL.suo
文件 9622 2007-03-27 09:42 学生成绩管理系统\Class.cs
文件 5315 2007-03-25 17:55 学生成绩管理系统\Class.resx
文件 15595 2007-03-27 09:44 学生成绩管理系统\ClassMember.cs
文件 5321 2007-03-25 17:56 学生成绩管理系统\ClassMember.resx
文件 12598 2007-03-25 17:55 学生成绩管理系统\Course.cs
............此处省略117个文件信息
相关资源
- 一款专业的双网卡自动切换软件卓高
- 学生选课系统源代码asp.net + c# + acce
- FusionCharts+asp.net+sqlserver生成图表
- 房屋售价的数据集kaggle
- C#图片转换成二进制流并且保存到sq
- C#代码整理(字符串操作、加密解密、
- 学生信息管理系统ASP.NET
- C# 自动开发一机一码加密
- C# 分隔WAV文件,将一段汉语语音分割
- 武汉理工大学C#实验4源代码_窗体和控
- 用C#做学习型人脸识别程序尝鲜版
- c# 学生选课系统
- 学生信息管理系统 ASP.NET B/S,web
- asp.net 学生信息管理系统源码C#
- C#通过串口采集数据,然后将数据点绘
- tabcontrol动态生成选项卡,并添加窗体
- 计算机图形学-贝泽尔曲线
- 学生考试管理系统 附带数据库 基于
- C#学生社团管理系统
- c# 二维码的生成和识别
- C#酒店管理系统功能很全面
- C#实现的计算机图形学基本绘图算法
- C# 多边形拓扑结构生成算法
- asp.NET学生选课系统实验实验报告
- 北大青鸟S1第一学期第三本书C#和SQL数
- asp.net学生信息管理系统
- 基于asp.net学生信息管理系统
- C#动态生成含有图片、图标、表格的
- C# excel转vcf生成器
- C# 将一个Treeview的树形结构保存成文件
评论
共有 条评论