在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → c#宾馆管理系统实现—功能全

c#宾馆管理系统实现—功能全

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.62M
  • 下载次数:7
  • 浏览次数:84
  • 发布时间:2020-10-08
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
c#宾馆管理系统实现—功能全 下面是在简体中文Microsoft Windows Server 2003(SP1)/Microsoft Office 2003(SP2)/ Microsoft SQL Server 2005/Microsoft Visual Studio 2005环境中配置《宾馆酒店管理系统》数据库及执行程序的具体步骤: 1、从配套光盘复制[源代码\第1章 宾馆酒店管理系统]文件夹及其子文件夹中的所有文件到计算机硬盘中,如:C:\第1章 宾馆酒店管理系统。 2、启动“SQL Server Management Studio”,并与默认的服务器连接 3、右键单击[对象资源管
【实例截图】
【核心代码】
s8z7tq
└── 第1章 宾馆酒店管理系统
├── Database
│   ├── MyHotel_log.ldf
│   ├── MyHotel.mdf
│   ├── MyHotel数据库.sql
│   ├── 客房入住单数据表.sql
│   ├── 客房入住报表视图.sql
│   ├── 客房结帐单数据表.sql
│   ├── 客房预约单数据表.sql
│   ├── 店内消费报表视图.sql
│   ├── 操作用户数据表.sql
│   ├── 旅客话费报表视图.sql
│   ├── 旅客餐费报表视图.sql
│   ├── 消费入帐数据表.sql
│   ├── 消费品分类查询视图.sql
│   ├── 消费物品数据表.sql
│   ├── 结帐汇总报表视图.sql
│   ├── 话费入帐数据表.sql
│   ├── 酒店信息数据表.sql
│   ├── 酒店房间数据表.sql
│   └── 餐费入帐数据表.sql
├── MyHotel
│   ├── app.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── MyHotel.vshost.exe
│   │   │   └── MyHotel.vshost.exe.config
│   │   └── Release
│   │   ├── Data
│   │   │   ├── MyBgPhoto1.JPG
│   │   │   ├── MyBgPhoto2.JPG
│   │   │   ├── ShowMyBgPhoto1.jpg
│   │   │   ├── ShowMyBgPhoto2.jpg
│   │   │   ├── 保存.ico
│   │   │   ├── 修改密码.ico
│   │   │   ├── 入住报表.ico
│   │   │   ├── 入住登记.ico
│   │   │   ├── 客房信息.ico
│   │   │   ├── 帮助信息.ico
│   │   │   ├── 打印.ico
│   │   │   ├── 打印帐单.ico
│   │   │   ├── 打印餐费.ico
│   │   │   ├── 押金信息.ico
│   │   │   ├── 换房.ico
│   │   │   ├── 换房登记.ico
│   │   │   ├── 操作权限.ico
│   │   │   ├── 新增.ico
│   │   │   ├── 旅客信息.ico
│   │   │   ├── 查询1.ico
│   │   │   ├── 查询2.ico
│   │   │   ├── 查询.ico
│   │   │   ├── 消耗信息.ico
│   │   │   ├── 消耗汇总.ico
│   │   │   ├── 消费报表.ico
│   │   │   ├── 消费物品.ico
│   │   │   ├── 消费登记.ico
│   │   │   ├── 用户密码.ico
│   │   │   ├── 登录系统.ico
│   │   │   ├── 结帐报表.ico
│   │   │   ├── 结帐登记.ico
│   │   │   ├── 补交押金.ico
│   │   │   ├── 话费报表.ico
│   │   │   ├── 话费登记.ico
│   │   │   ├── 返回系统.ico
│   │   │   ├── 退出系统.ico
│   │   │   ├── 酒店信息.ico
│   │   │   ├── 酒店客房.ico
│   │   │   ├── 预订入住.ico
│   │   │   ├── 预订登记.ico
│   │   │   ├── 餐费报表.ico
│   │   │   └── 餐费登记.ico
│   │   ├── MyHotel.exe
│   │   ├── MyHotel.exe.config
│   │   ├── MyHotel.pdb
│   │   ├── MyHotel.vshost.exe
│   │   └── MyHotel.vshost.exe.config
│   ├── BookForm.cs
│   ├── BookForm.Designer.cs
│   ├── BookForm.resx
│   ├── ChangeForm.cs
│   ├── ChangeForm.Designer.cs
│   ├── ChangeForm.resx
│   ├── ChangeUserPasswordForm.cs
│   ├── ChangeUserPasswordForm.Designer.cs
│   ├── ChangeUserPasswordForm.resx
│   ├── CheckInForm.cs
│   ├── CheckInForm.Designer.cs
│   ├── CheckInForm.resx
│   ├── CheckOutForm.cs
│   ├── CheckOutForm.Designer.cs
│   ├── CheckOutForm.resx
│   ├── CompanyForm.cs
│   ├── CompanyForm.Designer.cs
│   ├── CompanyForm.resx
│   ├── ConsumeForm.cs
│   ├── ConsumeForm.Designer.cs
│   ├── ConsumeForm.resx
│   ├── DepositForm.cs
│   ├── DepositForm.Designer.cs
│   ├── DepositForm.resx
│   ├── EatingForm.cs
│   ├── EatingForm.Designer.cs
│   ├── EatingForm.resx
│   ├── FromBookToRegisterForm.cs
│   ├── FromBookToRegisterForm.Designer.cs
│   ├── FromBookToRegisterForm.resx
│   ├── GoodsForm.cs
│   ├── GoodsForm.Designer.cs
│   ├── GoodsForm.resx
│   ├── LoginForm.cs
│   ├── LoginForm.Designer.cs
│   ├── LoginForm.resx
│   ├── MainForm.cs
│   ├── MainForm.Designer.cs
│   ├── MainForm.resx
│   ├── MyHotel.csproj
│   ├── MyHotelDataSet.cs
│   ├── MyHotelDataSet.Designer.cs
│   ├── MyHotelDataSet.xsc
│   ├── MyHotelDataSet.xsd
│   ├── MyHotelDataSet.xss
│   ├── obj
│   │   ├── Debug
│   │   │   ├── MyHotel.csproj.GenerateResource.Cache
│   │   │   ├── MyHotel.exe
│   │   │   ├── MyHotel.MainForm.resources
│   │   │   ├── MyHotel.pdb
│   │   │   └── MyHotel.Properties.Resources.resources
│   │   ├── MyHotel.csproj.FileList.txt
│   │   └── Release
│   │   ├── MyHotel.BookForm.resources
│   │   ├── MyHotel.ChangeForm.resources
│   │   ├── MyHotel.ChangeUserPasswordForm.resources
│   │   ├── MyHotel.CheckInForm.resources
│   │   ├── MyHotel.CheckOutForm.resources
│   │   ├── MyHotel.CompanyForm.resources
│   │   ├── MyHotel.ConsumeForm.resources
│   │   ├── MyHotel.csproj.GenerateResource.Cache
│   │   ├── MyHotel.csproj.ResolveComReference.cache
│   │   ├── MyHotel.DepositForm.resources
│   │   ├── MyHotel.EatingForm.resources
│   │   ├── MyHotel.exe
│   │   ├── MyHotel.FromBookToRegisterForm.resources
│   │   ├── MyHotel.GoodsForm.resources
│   │   ├── MyHotel.LoginForm.resources
│   │   ├── MyHotel.MainForm.resources
│   │   ├── MyHotel.OperatorForm.resources
│   │   ├── MyHotel.pdb
│   │   ├── MyHotel.PrintCheckOutForm.resources
│   │   ├── MyHotel.PrintConsumeForm.resources
│   │   ├── MyHotel.PrintEatingForm.resources
│   │   ├── MyHotel.PrintForm.resources
│   │   ├── MyHotel.PrintRegisterForm.resources
│   │   ├── MyHotel.PrintTelephoneForm.resources
│   │   ├── MyHotel.Properties.Resources.resources
│   │   ├── MyHotel.QueryConsumeForm.resources
│   │   ├── MyHotel.QueryDepositForm.resources
│   │   ├── MyHotel.QueryGuestForm.resources
│   │   ├── MyHotel.QuerySumForm.resources
│   │   ├── MyHotel.RegisterForm.resources
│   │   ├── MyHotel.RoomForm.resources
│   │   ├── MyHotel.RoomStatusForm.resources
│   │   ├── MyHotel.TelephoneForm.resources
│   │   ├── MyHotel.VersionForm.resources
│   │   └── TempPE
│   │   ├── MyHotelDataSet1.Designer.cs.dll
│   │   ├── MyHotelDataSet.Designer.cs.dll
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── OperatorForm.cs
│   ├── OperatorForm.Designer.cs
│   ├── OperatorForm.resx
│   ├── PrintCheckOutForm.cs
│   ├── PrintCheckOutForm.Designer.cs
│   ├── PrintCheckOutForm.resx
│   ├── PrintConsumeForm.cs
│   ├── PrintConsumeForm.Designer.cs
│   ├── PrintConsumeForm.resx
│   ├── PrintEatingForm.cs
│   ├── PrintEatingForm.Designer.cs
│   ├── PrintEatingForm.resx
│   ├── PrintForm.cs
│   ├── PrintForm.Designer.cs
│   ├── PrintForm.resx
│   ├── PrintRegisterForm.cs
│   ├── PrintRegisterForm.Designer.cs
│   ├── PrintRegisterForm.resx
│   ├── PrintTelephoneForm.cs
│   ├── PrintTelephoneForm.Designer.cs
│   ├── PrintTelephoneForm.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── QueryConsumeForm.cs
│   ├── QueryConsumeForm.Designer.cs
│   ├── QueryConsumeForm.resx
│   ├── QueryDepositForm.cs
│   ├── QueryDepositForm.Designer.cs
│   ├── QueryDepositForm.resx
│   ├── QueryGuestForm.cs
│   ├── QueryGuestForm.Designer.cs
│   ├── QueryGuestForm.resx
│   ├── QuerySumForm.cs
│   ├── QuerySumForm.Designer.cs
│   ├── QuerySumForm.resx
│   ├── RegisterForm.cs
│   ├── RegisterForm.Designer.cs
│   ├── RegisterForm.resx
│   ├── RoomForm.cs
│   ├── RoomForm.Designer.cs
│   ├── RoomForm.resx
│   ├── RoomStatusForm.cs
│   ├── RoomStatusForm.Designer.cs
│   ├── RoomStatusForm.resx
│   ├── TelephoneForm.cs
│   ├── TelephoneForm.Designer.cs
│   ├── TelephoneForm.resx
│   ├── VersionForm.cs
│   ├── VersionForm.Designer.cs
│   └── VersionForm.resx
├── 宾馆酒店管理系统.sln
└── 宾馆酒店管理系统.suo

12 directories, 213 files

标签:

实例下载地址

c#宾馆管理系统实现—功能全

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警