资源简介

餐厅管理系统(管理端与客户端) 参考网址有: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  餐厅管理系统--管理员版\餐厅管理系统--管理员版\baseClass\
     文件         545  2012-08-23 11:28  餐厅管理系统--管理员版\餐厅管理系统--管理员版\baseClass\DBConn.cs
     目录           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个文件信息

评论

共有 条评论