资源简介
C#学生综合信息管理系统,包含完整的源代码,数据库
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
//下载自:源码爱好者 http://www.codefans.net
namespace Loginframe
{
public partial class AddQuestion : Form
{
public AddQuestion()
{
InitializeComponent();
}
private void AddQuestion_Load(object sender EventArgs e)
{
string sql = “select SubjectName from Subject“;
try
{
SqlCommand command = new SqlCommand(sql DbHelper.connection);
DbHelper.connection.Open();
SqlDataReader dataReader = command.ExecuteReader();
while (dataReader.Read())
{
cboSubject.Items.Add(dataReader[“SubjectName“].ToString());
}
dataReader.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally {
DbHelper.connection.Close();
}
}
private void btnAdd_Click(object sender EventArgs e)
{
string question = txtQuestion.Text.Trim();
string optionA = txtAnserA.Text.Trim();
string optionB = txtAnserB.Text.Trim();
string optionC = txtAnserC.Text.Trim();
string optionD = txtAnserD.Text.Trim();
string subject = cboSubject.Text;
int subjectId = 0;
string answer = ““;
int difficulty = 0;
if (!ValidateInput())
{
MessageBox.Show(“信息填写不完整!“);
}
else {
string sql = string.Format(“select SubjectId from Subject where SubjectName=‘{0}‘“subject);
try
{
SqlCommand command = new SqlCommand();
command.CommandText = sql;
command.Connection = DbHelper.connection;
DbHelper.connection.Open();
//得到科目编号
subjectId = (int)command.ExecuteScalar();
//SqlDataReader dataReader = command.ExecuteReader();
//if(dataReader.Read()){
// subjectId = (int)dataReader[0];
//}
//dataReader.close();
//确定答案
if (rdoA.Checked) {
answer = “A“;
}else if (rdoB.Checked) {
answer = “B“;
}else if (rdoC.Checked) {
answer = “C“;
}else{
answer = “D“;
}
//确定难
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5441 2009-05-08 00:58 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 17603 2008-06-12 19:52 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 5814 2008-06-12 19:52 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 5756 2008-06-13 13:11 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 19839 2009-05-08 00:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 17946 2008-06-13 13:11 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 1458 2009-05-08 00:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 14200 2009-05-08 00:58 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 26105 2008-06-17 12:29 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 4702 2009-05-08 00:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 27143 2008-06-30 16:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 6009 2008-06-30 16:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 5924 2008-06-30 16:07 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 8769 2008-06-26 17:54 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 6007 2008-06-26 17:54 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 396 2008-06-14 10:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 540 2008-06-17 10:40 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 627 2008-06-10 13:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 2641 2009-05-08 00:58 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 6008 2008-06-10 13:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 4418 2009-05-08 00:58 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 5500 2009-05-08 00:58 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 76557 2008-06-17 11:41 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 12009 2008-06-19 10:49 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 168 2008-06-23 16:53 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 263 2009-05-08 00:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 61873 2009-05-08 00:59 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 3 2008-06-14 10:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 22475 2008-06-14 10:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
文件 3 2008-06-14 10:50 C#学生综合信息管理系统完整版源码\xueshengxinxiguanlixito\MySchool\Backup\Loginfr
............此处省略346个文件信息
相关资源
- c# in depth 第四版 全彩带书签 2019最新
- c#工资管理系统+文档只供参考
- 基于C#和OpenTK的3D坐标系演示
- C#通讯录管理系统270589
- 用C#实现的图书馆管理系统
- c#+arcengine 空间查询属性查询
- C#基础入门传智播客2011版课件讲师(
- c#教师管理系统
- NPOI 2.2.1
- 教室管理系统,C#SQLite
- 教室管理系统C#与数据库
- C# 实现的3D打印
- C#的windows应用窗体开发教程
- C#设计的企业人事工资考勤管理系统
- C#设计的电子邮件系统+论文+报告+源码
- 教务系统c#可运行代码附带数据库
- C#制作学籍系统管理
- C#编写的选课系统
- C# quartz 定时使用教程
- c# 波形显示上位机代码
- C#+SQL+三层架构酒店管理系统
- asp.net会员管理系统源码
- 基于VS2008 C#编写的简单学生成绩管理
- C#股票K线走势加技术指标源码
- 基于C#的书店管理系统
- C# WPF 解压缩7zip文件 带进度条
- 基于C#开发的音乐播放器
- C# 图片管家
- C#图书管理系统三层架构含数据库文件
- 基于ASP.NET学生请假管理系统源码
评论
共有 条评论