资源简介
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个文件信息
相关资源
- WPF USB 网络 串口 通信软件
- B/S 网上订餐系统
- 教室管理系统.rar
- 小鸡快跑游戏.
-
分别适用于.NET fr
amework 2.0和4.0的E - 汽车租赁系统............................
- 德卡D8读写器关于读写感应卡的一些代
- halcon 测量助手
- 图片存储到数据库保存二进制文件并
- 用Socket写的简易FTP服务器和客户端
- 企业销售管理信息系统(全套)
- 串口操作类(justinio)
- 基于Petri网的工作流(完整的原创源代
- 选择题自动考试系统
- 多线程实例:桌面智能弹球小游戏
- 土地信息管理系统
- ServiceStack V3.9 全部dll
- PDF pdfview.ocx 无水印
- 无需共享打印机实现远程打印功能小
- 真正的破解版PDFView4NET
- 网页调用ActiveX控件获取串口数据
- Luence的与盘古分词的使用软件
- Emgu.CV 打开视频与人脸检测
- 麦克纳姆轮程序.rar
- Unity3D 实战视频教程 保卫萝卜 2D 游戏
- net微信支付
- lucene.net+盘古分词多条件全文检索并匹
- 闪电猫-电商下图助手5.0.zip
- FastReport.Net V2014.4.8 For .Net2.0
- NET Reflector 8.3破解版自带代码导出
评论
共有 条评论