资源简介
这是一个课程设计,是连锁店管理系统,c#做的,有数据库,很不错哦~~
代码片段和文件信息
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
textBox1.Text = ““;
string cm1=““;
//string cn = “Data Source=LT-PC\\SQLEXPRESS;AttachDbFilename=D:\\Program Files\\Microsoft SQL Server\\MSSQL.1\\MSSQL\\Data\\chainstoreMSys.mdf;Persist Security Info=True;User ID=taoer;Password=147258“;
string cn = “Data Source=LT-PC\\SQLEXPRESS;AttachDbFilename=E:\\chainstoreMSys.mdf;Persist Security Info=True;User ID=depstore;Password=147258“;
SqlConnection con = new SqlConnection(cn);
SqlDataAdapter da = new SqlDataAdapter();
if (!(textBox2.Text == ““) && (textBox3.Text == ““) && (textBox4.Text == ““))
cm1 = “select * from clerk where Snum=\‘“ + textBox2.Text + “\‘“;
else if ((textBox2.Text == ““) && !(textBox3.Text == ““) && (textBox4.Text == ““))
cm1 = “select * from clerk where Cnum=\‘“ + textBox3.Text + “\‘“;
else if ((textBox2.Text == ““) && (textBox3.Text == ““) && !(textBox4.Text == ““))
cm1 = “select * from clerk where Cname=\‘“ + textBox4.Text + “\‘“;
else if (!(textBox2.Text == ““) && !(textBox3.Text == ““) && (textBox4.Text == ““))
cm1 = “select * from clerk where Snum=\‘“ + textBox2.Text + “\‘ and Cnum=\‘“ + textBox3.Text + “\‘“;
else if ((textBox2.Text == ““) && !(textBox3.Text == ““) && !(textBox4.Text == ““))
cm1 = “select * from clerk where Cnum=\‘“ + textBox3.Text + “\‘ and Cname=\‘“ + textBox4.Text + “\‘“;
else if (!(textBox2.Text == ““) && (textBox3.Text == ““) && !(textBox4.Text == ““))
cm1 = “select * from clerk where Snum=\‘“ + textBox2.Text + “\‘ and Cname=\‘“ + textBox4.Text + “\‘“;
else if (!(textBox2.Text == ““) && !(textBox3.Text == ““) && !(textBox4.Text == ““))
cm1 = “select * from clerk where Snum=\‘“ + textBox2.Text + “\‘ and Cname=\‘“ + textBox3.Text + “\‘ and Cname=\‘“ + textBox4.Text + “\‘“;
else if ((textBox2.Text == ““) && (textBox3.Text == ““) && (textBox4.Text == ““))
cm1 = “select * from clerk“;
SqlCommand com1 = new SqlCommand(cm1 con);
da.SelectCommand = com1;
DataSet ds = new DataSet();
da.Fill(ds “clerk“);
foreach (DataTable dt in ds.Tables)
{
foreach (DataRow dr in dt.Rows)
{
for (int i = 0; i < dt.Columns.Count; i++)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1632 2009-07-01 17:16 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.application
文件 69632 2009-07-01 17:16 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.exe
文件 3619 2009-07-01 17:16 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.exe.manifest
文件 161280 2009-07-01 17:16 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.pdb
文件 1632 2009-07-01 17:16 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.vshost.application
文件 14328 2009-07-01 17:17 WindowsFormsApplication2\bin\Release\WindowsFormsApplication2.vshost.exe
文件 8873 2009-07-01 16:40 WindowsFormsApplication2\Form1.cs
文件 18402 2009-07-01 16:40 WindowsFormsApplication2\Form1.Designer.cs
文件 5814 2009-07-01 16:40 WindowsFormsApplication2\Form1.resx
文件 4056 2009-07-01 17:14 WindowsFormsApplication2\Form10.cs
文件 9564 2009-07-01 17:04 WindowsFormsApplication2\Form10.Designer.cs
文件 5814 2009-07-01 17:04 WindowsFormsApplication2\Form10.resx
文件 2831 2009-07-01 17:07 WindowsFormsApplication2\Form11.cs
文件 9503 2009-07-01 17:06 WindowsFormsApplication2\Form11.Designer.cs
文件 5814 2009-07-01 17:06 WindowsFormsApplication2\Form11.resx
文件 3090 2009-07-01 17:08 WindowsFormsApplication2\Form12.cs
文件 8971 2009-07-01 17:08 WindowsFormsApplication2\Form12.Designer.cs
文件 5814 2009-07-01 17:08 WindowsFormsApplication2\Form12.resx
文件 1286 2009-07-01 17:08 WindowsFormsApplication2\Form13.cs
文件 4086 2009-07-01 15:24 WindowsFormsApplication2\Form13.Designer.cs
文件 5814 2009-07-01 15:24 WindowsFormsApplication2\Form13.resx
文件 494 2009-07-01 15:16 WindowsFormsApplication2\Form14.cs
文件 2629 2009-07-01 15:16 WindowsFormsApplication2\Form14.Designer.cs
文件 5814 2009-07-01 15:16 WindowsFormsApplication2\Form14.resx
文件 6661 2009-07-01 16:43 WindowsFormsApplication2\Form2.cs
文件 15187 2009-07-01 16:43 WindowsFormsApplication2\Form2.Designer.cs
文件 5814 2009-07-01 16:43 WindowsFormsApplication2\Form2.resx
文件 6538 2009-07-01 16:47 WindowsFormsApplication2\Form3.cs
文件 13752 2009-07-01 16:47 WindowsFormsApplication2\Form3.Designer.cs
文件 5814 2009-07-01 16:47 WindowsFormsApplication2\Form3.resx
............此处省略64个文件信息
- 上一篇:104电力规约的c#部分功能实现
- 下一篇:C#引用Visa读取示波器数据
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论