资源简介
net宿舍管理信息系统最终版完整源码-可二次开发.rar
net宿舍管理信息系统最终版完整源码-可二次开发.rar
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace DormManageSystem
{
public partial class AddAccident : Form
{
private SqlConnection sqlConnection1 = null;
public AddAccident()
{
InitializeComponent();
this.sqlConnection1 = new SqlConnection(DormManageSystem.database.sqlConnection.connection);
}
private void btchongzhi_Click(object sender EventArgs e)
{
dormid.Text = ““;
person.Text = ““;
koufen.Text = ““;
shijian.Text = ““;
chuli.Text = ““;
}
private void btok_Click(object sender EventArgs e)
{
try
{
if (dormid.Text.Trim() == ““ || shijian.Text == ““||chuli.Text==““)
MessageBox.Show(“请输入完整信息!“ “提示“);
else
{
sqlConnection1.Open();
string sql = “select * from dorm where dormid =‘“ + dormid.Text.Trim() + “‘“;
SqlCommand cmd = new SqlCommand(sql sqlConnection1);
if (null == cmd.ExecuteScalar())
MessageBox.Show(“没有该宿舍号,请重新输入!“ “提示“);
else
{
sql = “insert into accident(dormidpersontimeaccidentkoufendeal) values(‘“ + dormid.Text.Trim() + “‘‘“ + person.Text.Trim()+ “‘‘“ + date.Value.Date.ToString() + “‘‘“ + shijian.Text+ “‘‘“ + koufen.Text.Trim()+ “‘‘“ + chuli.Text + “‘)“;
cmd.CommandText = sql;
cmd.ExecuteNonQuery();
MessageBox.Show(“添加信息成功!“ “提示“);
}
sqlConnection1.Close();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2209 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.cs
文件 10800 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.resx
文件 2181 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.cs
文件 9805 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.resx
文件 2270 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.cs
文件 10480 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.resx
文件 2640 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.cs
文件 13035 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.resx
文件 3323 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.cs
文件 11120 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.resx
文件 2229 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.cs
文件 11071 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.resx
文件 2288 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.cs
文件 11316 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.resx
文件 3305 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.cs
文件 10980 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.resx
文件 2670 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.cs
文件 9269 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.resx
文件 2042 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AlterAccident.cs
文件 10759 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AlterAccident.Designer.cs
文件 12550 2019-10-17 10:14 net宿舍管理信息系统最终版完整源码-可二次开发\AlterAccident.resx
............此处省略332个文件信息
相关资源
- Unity 精伦电子阅读器 二次开发 亲测
- 叫号语音平台源码
- Apress Visual C Sharp 2010 Recipes A Problem S
- 简单的网上鞋店购物系统
- 关于串口PLC联网取数与PLC之间通讯
- AGV小车运动控制
- 基于.net技术的校园新闻发布系统全套
- 自己做的购物网站的毕业设计全套包
- AVPro Live Camera 2.8.0.unitypackage
- BookManage图书管理系统
- 数据集的使用方法和技巧
- 汽车美容会员管理系统
-
Touchsc
ript Unity Package - 通过网页服务器监控设备状态
- IrisSkin4破解版,几十款皮肤,加皮肤
- 设计模式:可复用面向对象软件的基
- AGV模拟无人机器人搬运
- npoi所有的dll
- 通联支付项目资料含demo.zip
- npoi 2.0 官网
- .net经典ERP管理系统完整源码(多层架
- net自动排课系统完整源码(适合智慧
- .net财务管理系统完整源码2019
- .net版本非常好看的留言板源码Metro风
- .net完整版本办公管理OA系统源码
- .net企业门户网站完整源码适合科技企
- 非常好看的Metro风格留言板源码,可直
- .net自动排课系统完整源码(适合智慧
- .NET 性能优化一书代码和电子版pdf英文
- NModbus开源库129838
评论
共有 条评论