• 大小: 528KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-23
  • 语言: C#
  • 标签:         

资源简介

一个基于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个文件信息

评论

共有 条评论