资源简介
本资源是是一套利用C#与MYSQL数据写的小型超市管理系统,可以实现基本的功能。
代码片段和文件信息
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 AYCSGJ
{
public partial class addemp : Form
{
SqlConnection conn = null;
SqlCommand cmd = null;
public addemp()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
int intFalg = 0;
string strEmpID = tb_EmpInfoID();
string strEmpName = txtEmpName.Text;
string intEmpSex = comboBox2.Text;
string strEmpDept = cmbEmpDept.Text;
string strEmpPost = cmbEmpPost.Text;
string strEmpPhone = txtEmpPhone.Text;
string strEmpAddress = txtEmpAddress.Text;
string strEmpFalg = “1“;
if (txtEmpName.Text != ““ || comboBox2.Text != ““ || cmbEmpDept.Text != ““ || cmbEmpPost.Text != ““ || txtEmpPhone.Text != ““)
{
string str_Add = “insert into EmpInfo values( “;
str_Add += “ ‘“ + strEmpID + “‘‘“ + strEmpName + “‘‘“ + intEmpSex + “‘“;
str_Add += “ ‘“ + strEmpDept + “‘‘“ + strEmpPost + “‘‘“ + strEmpPhone + “‘“;
str_Add += “ ‘“ + strEmpAddress + “‘“;
str_Add += ““ + strEmpFalg + “)“;
getsqlconn g1 = new getsqlconn();
conn = g1.getconn();
cmd = new SqlCommand(str_Add conn);
intFalg = cmd.ExecuteNonQuery();
MessageBox.Show(“添加成功“ “提示“);
conn.Dispose();
this.Close();
}
else
{
MessageBox.Show(“添加无内容!“ “提示“);
}
}//确定添加
public string tb_EmpInfoID()
{
int intYear = DateTime.Now.Day;
int intMonth = DateTime.Now.Month;
int intDate = DateTime.Now.Year;
int intHour = DateTime.Now.Hour;
int intSecond = DateTime.Now.Second;
int intMinute = DateTime.Now.Minute;
string strTime = null;
strTime = intYear.ToString();
if (intMonth < 10)
{
strTime += “0“ + intMonth.ToString();
}
else
{
strTime += intMonth.ToString();
}
if (intDate < 10)
{
strTime += “0“ + intDate.ToString();
}
else
{
strTime += intDate.ToString();
}
if (intHour < 10)
{
strTime += “0“ + intHour.ToString();
}
else
{
strTime += intHour.ToString();
}
if (intMinute < 1
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 860 2018-07-06 16:23 超市管理系统\AYCSGJ.sln
目录 0 2018-07-14 16:33 超市管理系统\AYCSGJ\
文件 3516 2018-07-14 13:32 超市管理系统\AYCSGJ\AddEmp.cs
文件 10950 2018-07-09 22:16 超市管理系统\AYCSGJ\AddEmp.Designer.cs
文件 5817 2018-07-09 22:16 超市管理系统\AYCSGJ\AddEmp.resx
文件 397 2018-07-14 15:35 超市管理系统\AYCSGJ\app.config
文件 5817 2018-07-14 12:13 超市管理系统\AYCSGJ\AYCSGJ.csproj
目录 0 2018-07-14 16:33 超市管理系统\AYCSGJ\bin\
目录 0 2018-07-14 16:33 超市管理系统\AYCSGJ\bin\Debug\
文件 76800 2018-07-14 15:36 超市管理系统\AYCSGJ\bin\Debug\AYCSGJ.exe
文件 397 2018-07-14 15:35 超市管理系统\AYCSGJ\bin\Debug\AYCSGJ.exe.config
文件 159232 2018-07-14 15:36 超市管理系统\AYCSGJ\bin\Debug\AYCSGJ.pdb
文件 11600 2018-07-14 16:11 超市管理系统\AYCSGJ\bin\Debug\AYCSGJ.vshost.exe
文件 397 2018-07-14 15:35 超市管理系统\AYCSGJ\bin\Debug\AYCSGJ.vshost.exe.config
目录 0 2018-07-06 16:25 超市管理系统\AYCSGJ\bin\Release\
文件 480735 2018-07-14 16:22 超市管理系统\AYCSGJ\db_AYCSGJDataSet.Designer.cs
文件 3 2018-07-10 17:18 超市管理系统\AYCSGJ\db_AYCSGJDataSet.xsc
文件 16445 2018-07-10 17:18 超市管理系统\AYCSGJ\db_AYCSGJDataSet.xsd
文件 3 2018-07-10 17:18 超市管理系统\AYCSGJ\db_AYCSGJDataSet.xss
文件 1353 2018-07-14 13:30 超市管理系统\AYCSGJ\DeleEmp.cs
文件 11905 2018-07-14 12:27 超市管理系统\AYCSGJ\DeleEmp.Designer.cs
文件 5817 2018-07-14 12:27 超市管理系统\AYCSGJ\DeleEmp.resx
文件 568 2018-07-07 09:22 超市管理系统\AYCSGJ\getsqlconn.cs
文件 6276 2018-07-14 15:36 超市管理系统\AYCSGJ\Home.cs
文件 22384 2018-07-14 13:14 超市管理系统\AYCSGJ\Home.Designer.cs
文件 9419 2018-07-14 13:14 超市管理系统\AYCSGJ\Home.resx
目录 0 2018-07-14 16:33 超市管理系统\AYCSGJ\image\
文件 2550 2018-07-08 10:20 超市管理系统\AYCSGJ\image\AddEntry.ico
文件 2550 2018-07-08 10:20 超市管理系统\AYCSGJ\image\DeleteEntry.ico
文件 2550 2018-07-08 10:20 超市管理系统\AYCSGJ\image\EditEntry.ico
文件 2071 2018-07-09 22:53 超市管理系统\AYCSGJ\Login.cs
............此处省略37个文件信息
- 上一篇:asp.net简单购物网站
- 下一篇:winform电影售票系统
相关资源
- 超市管理系统 c# sql 及设计报告
- 超市管理系统(C#源码) 超市管理系
- c#小型超市管理系统
- c#winfrom超市管理系统
- .net 美萍超市管理系统源码C#
- C#超市管理系统
- 超市管理系统源码
- 超市管理系统C#+SQL
- C#超市管理系统代码及窗体
- C#超市管理系统 完善
- C#+Sql server超市管理系统
- C#小型超市管理系统+SQL数据库
- asp.net+C#实现的超市管理系统
- 超市管理系统 SQL课程设计 C# visual s
- 超市管理系统源码(含数据库)-win
- C#超市管理系统源码(含数据库以及设
- c# 超市管理系统(源码+文档+数据库脚
- 超市管理系统源码(喜多多)
- 超市管理系统(c#源码)
- c#设计超市管理系统源码
- C# 小型超市管理系统
- C#与sql server超市管理系统源码(含数
- asp.net 超市管理系统源码+数据库
评论
共有 条评论