资源简介

宾馆管理信息系统 系统简介: 宾馆在正常的运营中需要对客房资源、顾客信息、结算信息进行管理,利用宾馆管理信息系统及时了解各个环节中信息的变更,有利于提高管理效率。系统开发的总体任务是实现宾馆各种信息的系统化、规范化和自动化。 限制条件: 有关客房标准的制定、标准信息的输入,包括标准编号、标准名称、房间面积、床位数量、住房单价、是否有空调、电视机、电话以及单独卫生间等。 客房标准信息的修改、查询等。 客房基本信息的输入,包括客房编号、客房类型、客房位置、客房单价、备注等。 客房基本信息的查询、修改,包括客房编号、客房类型、客房位置、客房单价、备注等。 剩余客房信息的查询等。 订房信息的输入,包括客房编号、客房种类、客房位置、客房单价、顾客姓名、顾客身份证号码、入住日期、折扣、备注信息等。 订房信息的修改和查询,包括客房编号、客房种类、客房位置、客房单价、顾客姓名、顾客身份证号码、入住日期、折扣、备注信息等。 结算信息的输入,包括客房编号、客房种类、位置、客房单价、顾客姓名、顾客身份证号码、入住日期、折扣、结算日期、备注信息等。 结算信息的修改和查询,包括客房编号、客房种类、客房位置、客房单价、顾客姓名、顾客身份证号码、入住日期、折扣、结日期、备注信息等。

资源截图

代码片段和文件信息

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.OleDb;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        private string m_ConStr = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\已住人.mdb“;
        private string m_ConStr1 = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\空房间.mdb“;
        private string m_ConStr2 = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\结算.mdb“;
        private string m_ConStr3 = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\已预订.mdb“;
        private string m_ConStr4 = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\客房标准信息.mdb“;
        private string m_ConStr5 = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“ + Application.StartupPath + @“\Database\房间信息.mdb“;

        private DataSet ds ds1 ds2 ds3 ds4 ds5;
        private OleDbDataAdapter dataAdapter;

        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender EventArgs e)
        {
            this.Hide();
            开房 kf2 = new 开房();
            kf2.MdiParent = this.MdiParent;
            kf2.ShowDialog();
            this.Close(); 
        }

        private void button2_Click(object sender EventArgs e)
        {
            this.Hide();
            预订 yd2 = new 预订();
            yd2.MdiParent = this.MdiParent;       
            yd2.ShowDialog();
            this.Close(); 
        }

        private void button3_Click(object sender EventArgs e)
        {
            this.Hide();
            退房0 tf2 = new 退房0();
            tf2.MdiParent = this.MdiParent;
            tf2.ShowDialog();
            this.Close(); 
        }

        private void Form1_Load(object sender EventArgs e)
        {
            OleDbConnection sqlCon = new OleDbConnection(m_ConStr);
            OleDbConnection sqlCon5 = new OleDbConnection(m_ConStr5);
            OleDbConnection sqlCon1 = new OleDbConnection(m_ConStr1);
            OleDbConnection sqlCon2 = new OleDbConnection(m_ConStr2);
            OleDbConnection sqlCon3 = new OleDbConnection(m_ConStr3);
            OleDbConnection sqlCon4 = new OleDbConnection(m_ConStr4);

            OleDbCommandBuilder cb = new OleDbCommandBuilder(dataAdapter);

            string sql = “select * from yzr“;
            dataAdapter = new OleDbDataAdapter(sql sqlCon);
            sqlCon.Close();
            ds = new DataSet();
            dataAdapter.Fill(ds “tbName“);
            this.dataGridView3.DataSource = ds.Tables[“tbName“].DefaultView;

       
            string sql1 = “select * from fjxx“;
            d

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1103  2012-09-17 21:59  宾馆管理ing\宾馆管理.txt

     文件        962  2012-09-16 20:11  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1.sln

    ..A..H.     79360  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1.suo

     文件       2777  2012-10-22 12:39  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\数据维护.cs

     文件       7973  2012-10-22 12:45  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\WindowsFormsApplication1.csproj

     文件       5814  2012-10-21 22:46  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\客房标准信息设置.resx

     文件       5814  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\开房.resx

     文件      20409  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\退房0.Designer.cs

     文件       5814  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\预订.resx

     文件       5814  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\退房0.resx

     文件       2229  2012-10-22 12:39  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\密码设置.cs

     文件        505  2012-10-17 18:56  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\Program.cs

     文件       5155  2012-10-22 13:37  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\结算信息设置.cs

     文件      68470  2012-10-22 13:59  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\Form2.resx

     文件       5096  2012-10-21 22:46  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\客房标准信息设置.cs

     文件       5814  2012-10-22 12:39  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\数据维护.resx

     文件      24995  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\开房.Designer.cs

     文件       4027  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\开房.cs

     文件       5814  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\预订入住.resx

     文件      14559  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\预订.Designer.cs

     文件       3941  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\预订.cs

     文件       4257  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\预订入住.cs

     文件       6023  2012-10-22 12:39  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\数据维护.Designer.cs

     文件       5049  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\退房0.cs

     文件       5255  2012-10-22 13:59  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\Form2.Designer.cs

     文件       1181  2012-10-18 13:08  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\app.config

     文件        180  2012-10-22 12:45  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.密码设置.resources

     文件      13195  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.FileListAbsolute.txt

     文件        180  2012-10-22 12:45  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.客房标准信息设置.resources

     文件       1627  2012-10-22 14:03  宾馆管理ing\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache

............此处省略70个文件信息

评论

共有 条评论