资源简介
7p-co-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);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 0 2019-11-21 11:32 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\1.bmp
文件 2209 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.cs
文件 10800 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddAccident.resx
文件 2181 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.cs
文件 9805 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCharge.resx
文件 2270 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.cs
文件 10480 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddCheck.resx
文件 2640 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.cs
文件 13035 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddDorm.resx
文件 3323 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.cs
文件 11120 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddHolidayStudent.resx
文件 2229 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.cs
文件 11071 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRegister.resx
文件 2288 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.cs
文件 11316 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddRepair.resx
文件 3305 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.cs
文件 10980 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddStudent.resx
文件 2670 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.cs
文件 9269 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.Designer.cs
文件 12550 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AddYongHu.resx
文件 2042 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AlterAccident.cs
文件 10759 2019-10-17 10:14 7p-co-net宿舍管理信息系统最终版完整源码-可二次开发\AlterAccident.Designer.cs
............此处省略333个文件信息
相关资源
- 9u-Xt-.net企业门户网站源码.rar
- z1-k3-net企业门户网站源码非常适合企
- oz-Az-net实现网吧锁屏源码--屏蔽系统热
- 过NP版CE.rar
- 88E1116R_Datasheet.pdf
- 网络分析仪HP8753中文使用指南.pdf
- PatternRecognitionAndMachineLearning.zip138785
- 工.rar
- ImitateWeiboIssuePager.zip
- Spread.rar
- 网狐棋牌.pdf
- 量子力学(曾谨严).pdf
- 13152239lfeg.zip
- yyz炫舞v2.19源码.zip
- oofficepjwor_xpgod.zip
- 练习答案.rar
- 我的美丽家乡----大同.rar
- MF000638-C.NET在线考试系统源码.zip
- OrCAD10.5软件精简版.rar
- 智媒AI批量写作助手V1.0.7z
- PyAlgoTrade用户手册·zw中文版.pdf
- 模式识别实验根据身高体重进行贝叶
- 编译试卷.zip
- c524d96698534a4ab14d5a517e54fbbb.zip
- d5da561faa8a419188c5add83ea6b5de.zip
- 智能压枪宏.rar
- FTA授权文件_View——1.rar
- chat.rar
- 速度规划算法.pdf
- 万能表单dayu_form8.1.5安装更新一体包含
评论
共有 条评论