资源简介
餐厅管理系统(管理端与客户端)
参考网址有:http://blog.csdn.net/sayln_wu/article/details/7901051
代码片段和文件信息
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 餐厅管理系统__管理员版
{
public partial class Desk : Form
{
public Desk()
{
InitializeComponent();
}
private void Desk_Load(object sender EventArgs e)
{
BandDate();
}
private void BandDate()
{
SqlConnection conn = baseClass.DBConn.SaylnConn();
conn.Open();
SqlDataAdapter sda = new SqlDataAdapter(“select roomNameroomJCroomBJFroomWZroomTyperoomRemark from tb_Room“ conn);
DataSet ds = new DataSet();
sda.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
conn.Close();
btnAdd.Enabled = true;
btnAlt.Enabled = false;
btnDel.Enabled = false;
}
private void dataGridView1_CellClick(object sender DataGridViewCellEventArgs e)
{
txtRName.Text = dataGridView1.SelectedCells[0].Value.ToString();
txtRJianCheng.Text = dataGridView1.SelectedCells[1].Value.ToString();
txtRBJF.Text = dataGridView1.SelectedCells[2].Value.ToString();
txtRWeiZhi.Text = dataGridView1.SelectedCells[3].Value.ToString();
txtRType.Text = dataGridView1.SelectedCells[4].Value.ToString();
txtRRemark.Text = dataGridView1.SelectedCells[5].Value.ToString();
btnAdd.Enabled = false;
btnAlt.Enabled = true;
btnDel.Enabled = true;
}
private void btnClr_Click(object sender EventArgs e)
{
txtRName.Text = ““;
txtRJianCheng.Text = ““;
txtRBJF.Text = ““;
txtRQiTa.Text = ““;
txtRRemark.Text = ““;
txtRType.Text = ““;
txtRWeiZhi.Text = ““;
btnAdd.Enabled = true;
btnAlt.Enabled = false;
btnDel.Enabled = false;
}
private void btnAdd_Click(object sender EventArgs e)
{
SqlConnection conn = baseClass.DBConn.SaylnConn();
conn.Open();
SqlCommand cmd = new SqlCommand(“insert into tb_Room(roomNameroomJCroomBJFroomWZroomZTroomTyperoomRemarkroomQT) values(‘“+txtRName.Text +“‘‘“+txtRJianCheng.Text+“‘‘“+txtRBJF.Text+“‘‘“+txtRWeiZhi.Text+“‘‘待用‘‘“+txtRType.Text+“‘‘“+txtRRemark.Text+“‘‘“+txtRQiTa.Text+“‘)“conn);
cmd.ExecuteNonQuery();
conn.Close();
BandDate();
}
private void btnDel_Click(object sender EventArgs e)
{
SqlConnection conn = baseClass.DBConn.SaylnConn();
conn.Open();
SqlCommand cmd = new SqlCommand(“delete from tb_Room where roomJC=‘“ + dataGridView1.Selected
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-08-23 18:15 餐厅管理系统--管理员版\
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\obj\
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\obj\x86\
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\obj\x86\Debug\
文件 864 2012-07-27 21:40 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.102.tlog
文件 448 2012-07-27 21:38 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.105.tlog
文件 448 2012-07-27 21:47 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.156.tlog
文件 448 2012-07-27 21:46 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.157.tlog
文件 598 2012-07-27 21:46 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.162.tlog
文件 448 2012-07-27 21:29 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.64.tlog
文件 448 2012-07-27 21:40 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.read.99.tlog
文件 530 2012-07-27 21:40 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.write.102.tlog
文件 530 2012-07-27 21:48 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.write.161.tlog
文件 530 2012-07-27 21:47 餐厅管理系统--管理员版\obj\x86\Debug\GenerateResource.write.182.tlog
文件 481 2012-07-15 21:23 餐厅管理系统--管理员版\数据库说明.txt
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\餐厅管理系统--管理员版\
文件 938 2012-07-13 21:20 餐厅管理系统--管理员版\餐厅管理系统--管理员版.sln
文件 43008 2012-08-23 18:14 餐厅管理系统--管理员版\餐厅管理系统--管理员版.suo
文件 719 2012-07-13 21:36 餐厅管理系统--管理员版\餐厅管理系统--管理员版\app.config
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\餐厅管理系统--管理员版\ba
文件 545 2012-08-23 11:28 餐厅管理系统--管理员版\餐厅管理系统--管理员版\ba
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\
目录 0 2012-08-15 19:47 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\db\
文件 2359296 2012-08-23 17:14 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\db\DBCanTing.mdf
文件 589824 2012-08-23 17:14 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\db\DBCanTing_log.ldf
文件 79360 2012-08-23 17:46 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\餐厅管理系统--管理员版.exe
文件 719 2012-07-13 21:36 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\餐厅管理系统--管理员版.exe.config
文件 161280 2012-08-23 17:46 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\餐厅管理系统--管理员版.pdb
文件 11608 2012-08-23 17:46 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\餐厅管理系统--管理员版.vshost.exe
文件 719 2012-07-13 21:36 餐厅管理系统--管理员版\餐厅管理系统--管理员版\bin\Debug\餐厅管理系统--管理员版.vshost.exe.config
............此处省略130个文件信息
- 上一篇:CISCO_UCS配置手册
- 下一篇:DIV CSS 汽车网站
相关资源
- ILSpy中文版
- UNITY代码大全
- 拼图小游戏.zip
- 图片拼图游戏
- 基于gmap和百度地图API开发的GIS应用
- 步进电机控制器.zip
- Win7 仿完整版苹果主题
- 天朝日语2.0(转载)
- .Net网络爬虫
- echartDemo柱状图折线图详解
- Net网络高级编程修订
- 创建PDF文档,加密创建的PDF文档,使
- 原型设计系统原型设计系统
- ERP管理系统源码
-
Mastering Unity sc
ripting - 医药销售系统
- 操作系统进程管理和内存管理demo
- Spire.Doc、Spire.Xls无水印
- .net经典会员管理项目完整源码(包含
- LINQ实战英文版
- PdfPrintingNet完美破解版4.8.2 (官网Re
- mvc 在线考试系统
- [免费PDF]代码整洁之道.rar
- 周立功USBCANI通讯测试源码
- 学生信息管理系统2020年7月7日.zip
- .net自动排课系统完整源码(适合智慧
- .NetCore快速开发后台框架v1.0
- net自动排课系统完整源码(适合智慧
- IM仿照QQ做的即时通信,功能比较全
- ArcGIS Engine/VS开发程序 空间分析程序系
评论
共有 条评论