【例子介绍】Visual C# 2005 管理系统开发经典案例(随书光盘)第二部分
Visual C# 2005 管理系统开发经典案例(随书光盘) 中国水利水电出版社 罗斌编著。文件太大,压成了三部分,这是第二部分。
【相关图片】
【源码结构】
文件清单
└── Visual C# 2005管理系统开发经典案例
├── SQL Server 2005
│ ├── MyOffice_log.LDF
│ ├── MyPersonnel_log.LDF
│ ├── MyPersonnel.mdf
│ ├── MySale_log.LDF
│ └── MySale.mdf
├── 光盘内容及其使用说明.doc
├── 第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
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ ├── 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
│ │ │ ├── Refactor
│ │ │ └── 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
├── 第2章 人事工资管理系统
│ ├── Database
│ │ ├── MyPersonnel_log.LDF
│ │ ├── MyPersonnel.mdf
│ │ ├── MyPersonnel数据库.sql
│ │ ├── SQL2005更新工资触发器.txt
│ │ ├── 公司信息数据表.sql
│ │ ├── 公司部门数据表.sql
│ │ ├── 员工家庭成员数据表.sql
│ │ ├── 在职员工视图.sql
│ │ ├── 培训记录数据表.sql
│ │ ├── 基本档案数据表.sql
│ │ ├── 奖惩记录数据表.sql
│ │ ├── 工作业绩数据表.sql
│ │ ├── 工作简历数据表.sql
│ │ ├── 工资发放表数据表.sql
│ │ ├── 工资核算表数据表.sql
│ │ ├── 操作用户数据表.sql
│ │ ├── 离职管理数据表.sql
│ │ └── 考勤记录数据表.sql
│ ├── MyPersonnel
│ │ ├── AbsentForm.cs
│ │ ├── AbsentForm.Designer.cs
│ │ ├── AbsentForm.resx
│ │ ├── app.config
│ │ ├── ArchievementForm.cs
│ │ ├── ArchievementForm.Designer.cs
│ │ ├── ArchievementForm.resx
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ │ ├── Data
│ │ │ │ ├── MyBgPhoto1.JPG
│ │ │ │ ├── MyBgPhoto2.JPG
│ │ │ │ ├── MyBgPhoto3.JPG
│ │ │ │ ├── MyBgPhoto4.JPG
│ │ │ │ ├── ShowMyBgPhoto1.jpg
│ │ │ │ ├── ShowMyBgPhoto2.jpg
│ │ │ │ ├── 个人档案.ico
│ │ │ │ ├── 个人考勤.ico
│ │ │ │ ├── 保存.ico
│ │ │ │ ├── 修改密码.ico
│ │ │ │ ├── 公司信息.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
│ │ │ ├── MyPersonnel.exe.config
│ │ │ ├── MyPersonnel.pdb
│ │ │ └── MyPersonnel.vshost.exe.config
│ │ ├── ChangeUserPasswordForm.cs
│ │ ├── ChangeUserPasswordForm.Designer.cs
│ │ ├── ChangeUserPasswordForm.resx
│ │ ├── CheckForm.cs
│ │ ├── CheckForm.Designer.cs
│ │ ├── CheckForm.resx
│ │ ├── CompanyForm.cs
│ │ ├── CompanyForm.Designer.cs
│ │ ├── CompanyForm.resx
│ │ ├── ComputeForm.cs
│ │ ├── ComputeForm.Designer.cs
│ │ ├── ComputeForm.resx
│ │ ├── DepartmentForm.cs
│ │ ├── DepartmentForm.Designer.cs
│ │ ├── DepartmentForm.resx
│ │ ├── FamilyForm.cs
│ │ ├── FamilyForm.Designer.cs
│ │ ├── FamilyForm.resx
│ │ ├── LeaveForm.cs
│ │ ├── LeaveForm.Designer.cs
│ │ ├── LeaveForm.resx
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── MyPersonnel.csproj
│ │ ├── MyPersonnelDataSet.cs
│ │ ├── MyPersonnelDataSet.Designer.cs
│ │ ├── MyPersonnelDataSet.xsc
│ │ ├── MyPersonnelDataSet.xsd
│ │ ├── MyPersonnelDataSet.xss
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ └── TempPE
│ │ │ ├── MyPersonnel.csproj.FileList.txt
│ │ │ └── Release
│ │ │ ├── MyPersonnel.AbsentForm.resources
│ │ │ ├── MyPersonnel.ArchievementForm.resources
│ │ │ ├── MyPersonnel.ChangeUserPasswordForm.resources
│ │ │ ├── MyPersonnel.CheckForm.resources
│ │ │ ├── MyPersonnel.CompanyForm.resources
│ │ │ ├── MyPersonnel.ComputeForm.resources
│ │ │ ├── MyPersonnel.csproj.GenerateResource.Cache
│ │ │ ├── MyPersonnel.csproj.ResolveComReference.cache
│ │ │ ├── MyPersonnel.DepartmentForm.resources
│ │ │ ├── MyPersonnel.FamilyForm.resources
│ │ │ ├── MyPersonnel.LeaveForm.resources
│ │ │ ├── MyPersonnel.LoginForm.resources
│ │ │ ├── MyPersonnel.MainForm.resources
│ │ │ ├── MyPersonnel.OperatorForm.resources
│ │ │ ├── MyPersonnel.PayForm.resources
│ │ │ ├── MyPersonnel.pdb
│ │ │ ├── MyPersonnel.PersonnelForm.resources
│ │ │ ├── MyPersonnel.Properties.Resources.resources
│ │ │ ├── MyPersonnel.QueryAllCheckForm.resources
│ │ │ ├── MyPersonnel.QueryCheckForm.resources
│ │ │ ├── MyPersonnel.QueryDepartmentForm.resources
│ │ │ ├── MyPersonnel.QueryPayForm.resources
│ │ │ ├── MyPersonnel.QueryPersonnelForm.resources
│ │ │ ├── MyPersonnel.ResumeForm.resources
│ │ │ ├── MyPersonnel.RewardsForm.resources
│ │ │ ├── MyPersonnel.TrainingForm.resources
│ │ │ ├── MyPersonnel.VersionForm.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── MyPersonnelDataSet.Designer.cs.dll
│ │ ├── OperatorForm.cs
│ │ ├── OperatorForm.Designer.cs
│ │ ├── OperatorForm.resx
│ │ ├── PayForm.cs
│ │ ├── PayForm.Designer.cs
│ │ ├── PayForm.resx
│ │ ├── PersonnelForm.cs
│ │ ├── PersonnelForm.Designer.cs
│ │ ├── PersonnelForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── QueryAllCheckForm.cs
│ │ ├── QueryAllCheckForm.Designer.cs
│ │ ├── QueryAllCheckForm.resx
│ │ ├── QueryCheckForm.cs
│ │ ├── QueryCheckForm.Designer.cs
│ │ ├── QueryCheckForm.resx
│ │ ├── QueryDepartmentForm.cs
│ │ ├── QueryDepartmentForm.Designer.cs
│ │ ├── QueryDepartmentForm.resx
│ │ ├── QueryPayForm.cs
│ │ ├── QueryPayForm.Designer.cs
│ │ ├── QueryPayForm.resx
│ │ ├── QueryPersonnelForm.cs
│ │ ├── QueryPersonnelForm.Designer.cs
│ │ ├── QueryPersonnelForm.resx
│ │ ├── ResumeForm.cs
│ │ ├── ResumeForm.Designer.cs
│ │ ├── ResumeForm.resx
│ │ ├── RewardsForm.cs
│ │ ├── RewardsForm.Designer.cs
│ │ ├── RewardsForm.resx
│ │ ├── TrainingForm.cs
│ │ ├── TrainingForm.Designer.cs
│ │ ├── TrainingForm.resx
│ │ ├── VersionForm.cs
│ │ ├── VersionForm.Designer.cs
│ │ └── VersionForm.resx
│ ├── 人事工资管理系统.sln
│ └── 人事工资管理系统.suo
├── 第3章 固定资产管理系统
│ ├── Database
│ │ ├── MyAssets_log.LDF
│ │ ├── MyAssets.mdf
│ │ ├── MyAssets数据库.sql
│ │ ├── 公司信息数据表.sql
│ │ ├── 公司部门数据表.sql
│ │ ├── 减少固定资产数据表.sql
│ │ ├── 可用固定资产视图.sql
│ │ ├── 固定资产修理记录数据表.sql
│ │ ├── 固定资产明细数据表.sql
│ │ ├── 固定资产租借记录数据表.sql
│ │ ├── 固定资产附属设备数据表.sql
│ │ ├── 折旧核算表数据表.sql
│ │ ├── 操作用户数据表.sql
│ │ ├── 租借固定资产数据表.sql
│ │ ├── 累计折旧查询视图.sql
│ │ ├── 维修固定资产数据表.sql
│ │ └── 计提累计折旧数据表.sql
│ ├── MyAssets
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── MyAssets.vshost.exe
│ │ │ │ └── MyAssets.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
│ │ │ │ ├── 查询1.ico
│ │ │ │ ├── 查询2.ico
│ │ │ │ ├── 查询.ico
│ │ │ │ ├── 汇总折旧.ico
│ │ │ │ ├── 用户密码.ico
│ │ │ │ ├── 登录系统.ico
│ │ │ │ ├── 累计折旧.ico
│ │ │ │ ├── 统计折旧.ico
│ │ │ │ ├── 计算折旧.ico
│ │ │ │ ├── 资产减少.ico
│ │ │ │ ├── 资产出借.ico
│ │ │ │ ├── 资产卡片.ico
│ │ │ │ ├── 资产完修.ico
│ │ │ │ ├── 资产归还.ico
│ │ │ │ ├── 资产折旧.ico
│ │ │ │ ├── 资产送修.ico
│ │ │ │ ├── 返回系统.ico
│ │ │ │ ├── 退出系统.ico
│ │ │ │ ├── 送修资产.ico
│ │ │ │ ├── 部门设置.ico
│ │ │ │ └── 部门资产.ico
│ │ │ ├── MyAssets.exe
│ │ │ ├── MyAssets.exe.config
│ │ │ ├── MyAssets.pdb
│ │ │ ├── MyAssets.vshost.exe
│ │ │ └── MyAssets.vshost.exe.config
│ │ ├── ChangeUserPasswordForm.cs
│ │ ├── ChangeUserPasswordForm.Designer.cs
│ │ ├── ChangeUserPasswordForm.resx
│ │ ├── CompanyForm.cs
│ │ ├── CompanyForm.Designer.cs
│ │ ├── CompanyForm.resx
│ │ ├── ComputeForm.cs
│ │ ├── ComputeForm.Designer.cs
│ │ ├── ComputeForm.resx
│ │ ├── DepartmentForm.cs
│ │ ├── DepartmentForm.Designer.cs
│ │ ├── DepartmentForm.resx
│ │ ├── FittingsForm.cs
│ │ ├── FittingsForm.Designer.cs
│ │ ├── FittingsForm.resx
│ │ ├── FixedAssetsForm.cs
│ │ ├── FixedAssetsForm.Designer.cs
│ │ ├── FixedAssetsForm.resx
│ │ ├── LeaseForm.cs
│ │ ├── LeaseForm.Designer.cs
│ │ ├── LeaseForm.resx
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── MyAssets.csproj
│ │ ├── MyAssetsDataSet1.Designer.cs
│ │ ├── MyAssetsDataSet1.xsc
│ │ ├── MyAssetsDataSet1.xsd
│ │ ├── MyAssetsDataSet1.xss
│ │ ├── MyAssetsDataSet.Designer.cs
│ │ ├── MyAssetsDataSet.xsc
│ │ ├── MyAssetsDataSet.xsd
│ │ ├── MyAssetsDataSet.xss
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ └── TempPE
│ │ │ ├── MyAssets.csproj.FileList.txt
│ │ │ └── Release
│ │ │ ├── MyAssets.ChangeUserPasswordForm.resources
│ │ │ ├── MyAssets.CompanyForm.resources
│ │ │ ├── MyAssets.ComputeForm.resources
│ │ │ ├── MyAssets.csproj.GenerateResource.Cache
│ │ │ ├── MyAssets.csproj.ResolveComReference.cache
│ │ │ ├── MyAssets.DepartmentForm.resources
│ │ │ ├── MyAssets.exe
│ │ │ ├── MyAssets.FittingsForm.resources
│ │ │ ├── MyAssets.FixedAssetsForm.resources
│ │ │ ├── MyAssets.LeaseForm.resources
│ │ │ ├── MyAssets.LoginForm.resources
│ │ │ ├── MyAssets.MainForm.resources
│ │ │ ├── MyAssets.OperatorForm.resources
│ │ │ ├── MyAssets.pdb
│ │ │ ├── MyAssets.PrintBorrowForm.resources
│ │ │ ├── MyAssets.PrintCardForm.resources
│ │ │ ├── MyAssets.PrintDepartmentForm.resources
│ │ │ ├── MyAssets.PrintDepreciationForm.resources
│ │ │ ├── MyAssets.PrintRepairedForm.resources
│ │ │ ├── MyAssets.PrintRepairForm.resources
│ │ │ ├── MyAssets.PrintReturnForm.resources
│ │ │ ├── MyAssets.PrintSubtractForm.resources
│ │ │ ├── MyAssets.PrintTypeForm.resources
│ │ │ ├── MyAssets.Properties.Resources.resources
│ │ │ ├── MyAssets.QueryDepreciationForm.resources
│ │ │ ├── MyAssets.RepairedForm.resources
│ │ │ ├── MyAssets.RepairForm.resources
│ │ │ ├── MyAssets.ReturnForm.resources
│ │ │ ├── MyAssets.SubtractForm.resources
│ │ │ ├── MyAssets.SumDepreciationForm.resources
│ │ │ ├── MyAssets.VersionForm.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ ├── MyAssetsDataSet1.Designer.cs.dll
│ │ │ ├── MyAssetsDataSet.Designer.cs.dll
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── OperatorForm.cs
│ │ ├── OperatorForm.Designer.cs
│ │ ├── OperatorForm.resx
│ │ ├── PrintBorrowForm.cs
│ │ ├── PrintBorrowForm.Designer.cs
│ │ ├── PrintBorrowForm.resx
│ │ ├── PrintCardForm.cs
│ │ ├── PrintCardForm.Designer.cs
│ │ ├── PrintCardForm.resx
│ │ ├── PrintDepartmentForm.cs
│ │ ├── PrintDepartmentForm.Designer.cs
│ │ ├── PrintDepartmentForm.resx
│ │ ├── PrintDepreciationForm.cs
│ │ ├── PrintDepreciationForm.Designer.cs
│ │ ├── PrintDepreciationForm.resx
│ │ ├── PrintRepairedForm.cs
│ │ ├── PrintRepairedForm.Designer.cs
│ │ ├── PrintRepairedForm.resx
│ │ ├── PrintRepairForm.cs
│ │ ├── PrintRepairForm.Designer.cs
│ │ ├── PrintRepairForm.resx
│ │ ├── PrintReturnForm.cs
│ │ ├── PrintReturnForm.Designer.cs
│ │ ├── PrintReturnForm.resx
│ │ ├── PrintSubtractForm.cs
│ │ ├── PrintSubtractForm.Designer.cs
│ │ ├── PrintSubtractForm.resx
│ │ ├── PrintTypeForm.cs
│ │ ├── PrintTypeForm.Designer.cs
│ │ ├── PrintTypeForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── QueryDepreciationForm.cs
│ │ ├── QueryDepreciationForm.Designer.cs
│ │ ├── QueryDepreciationForm.resx
│ │ ├── RepairedForm.cs
│ │ ├── RepairedForm.Designer.cs
│ │ ├── RepairedForm.resx
│ │ ├── RepairForm.cs
│ │ ├── RepairForm.Designer.cs
│ │ ├── RepairForm.resx
│ │ ├── ReturnForm.cs
│ │ ├── ReturnForm.Designer.cs
│ │ ├── ReturnForm.resx
│ │ ├── SubtractForm.cs
│ │ ├── SubtractForm.Designer.cs
│ │ ├── SubtractForm.resx
│ │ ├── SumDepreciationForm.cs
│ │ ├── SumDepreciationForm.Designer.cs
│ │ ├── SumDepreciationForm.resx
│ │ ├── VersionForm.cs
│ │ ├── VersionForm.Designer.cs
│ │ └── VersionForm.resx
│ ├── 固定资产管理系统.sln
│ └── 固定资产管理系统.suo
└── 第4章 商品销售管理系统
├── Database
│ ├── MySale_log.LDF
│ ├── MySale.mdf
│ ├── MySale数据库.sql
│ ├── 供应商信息数据表.sql
│ ├── 公司信息数据表.sql
│ ├── 商品信息数据表.sql
│ ├── 商品退货查询视图.sql
│ ├── 操作用户数据表.sql
│ ├── 累计采购商品视图.sql
│ ├── 累计销售商品视图.sql
│ ├── 采购信息数据表.sql
│ ├── 采购入库明细视图.sql
│ ├── 采购商信息数据表.sql
│ ├── 采购明细数据表.sql
│ ├── 销售信息数据表.sql
│ ├── 销售出库明细视图.sql
│ ├── 销售明细数据表.sql
│ └── 销售退货查询视图.sql
└── MySale
├── app.config
├── bin
│ ├── Debug
│ └── Release
│ ├── Data
│ │ ├── MyBgPhoto1.JPG
│ │ ├── MyBgPhoto2.JPG
│ │ ├── MyBgPhoto3.JPG
│ │ ├── ShowMyBgPhoto1.jpg
│ │ ├── ShowMyBgPhoto2.jpg
│ │ ├── 付退货款.ico
│ │ ├── 供应商信息.ico
│ │ ├── 供应商报表.ico
│ │ ├── 保存.ico
│ │ ├── 修改密码.ico
│ │ ├── 入库报表.ico
│ │ ├── 公司信息.ico
│ │ ├── 减少商品.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
│ ├── MySale.exe.config
│ ├── MySale.pdb
│ └── MySale.vshost.exe.config
├── BuyerForm.cs
├── BuyerForm.Designer.cs
├── BuyerForm.resx
├── ChangeUserPasswordForm.cs
├── ChangeUserPasswordForm.Designer.cs
├── ChangeUserPasswordForm.resx
├── CompanyForm.cs
├── CompanyForm.Designer.cs
├── CompanyForm.resx
├── LoginForm.cs
├── LoginForm.Designer.cs
├── LoginForm.resx
├── MainForm.cs
├── MainForm.Designer.cs
├── MainForm.resx
├── MerchandiseForm.cs
├── MerchandiseForm.Designer.cs
├── MerchandiseForm.resx
├── MySale.csproj
├── MySaleDataSet1.Designer.cs
├── MySaleDataSet1.xsc
├── MySaleDataSet1.xsd
├── MySaleDataSet1.xss
├── MySaleDataSet.cs
├── MySaleDataSet.Designer.cs
├── MySaleDataSet.xsc
├── MySaleDataSet.xsd
├── MySaleDataSet.xss
├── obj
│ ├── Debug
│ │ └── TempPE
│ ├── MySale.csproj.FileList.txt
│ └── Release
│ ├── MySale.BuyerForm.resources
│ ├── MySale.ChangeUserPasswordForm.resources
│ ├── MySale.CompanyForm.resources
│ ├── MySale.csproj.GenerateResource.Cache
│ ├── MySale.csproj.ResolveComReference.cache
│ ├── MySale.LoginForm.resources
│ ├── MySale.MainForm.resources
│ ├── MySale.MerchandiseForm.resources
│ ├── MySale.OperatorForm.resources
│ ├── MySale.PaymentForm.resources
│ ├── MySale.pdb
│ ├── MySale.Properties.Resources.resources
│ ├── MySale.RefundmentForm.resources
│ ├── MySale.ReportBuyerForm.resources
│ ├── MySale.ReportCollectForm.resources
│ ├── MySale.ReportSupplierForm.resources
│ ├── MySale.ReportWarehouseInForm.resources
│ ├── MySale.ReportWarehouseOutForm.resources
│ ├── MySale.SaleAddForm.resources
│ ├── MySale.SaleGatheringForm.resources
│ ├── MySale.SaleReduceForm.resources
│ ├── MySale.SaleRefundmentForm.resources
│ ├── MySale.SaleTransferForm.resources
│ ├── MySale.SupplierForm.resources
│ ├── MySale.TransferForm.resources
│ ├── MySale.VersionForm.resources
│ ├── MySale.WarehouseInForm.resources
│ ├── MySale.WarehouseOutForm.resources
│ ├── Refactor
│ └── TempPE
│ ├── MySaleDataSet1.Designer.cs.dll
│ └── MySaleDataSet.Designer.cs.dll
├── OperatorForm.cs
├── OperatorForm.Designer.cs
├── OperatorForm.resx
├── PaymentForm.cs
├── PaymentForm.Designer.cs
├── PaymentForm.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── RefundmentForm.cs
├── RefundmentForm.Designer.cs
├── RefundmentForm.resx
├── ReportBuyerForm.cs
├── ReportBuyerForm.Designer.cs
├── ReportBuyerForm.resx
├── ReportCollectForm.cs
├── ReportCollectForm.Designer.cs
├── ReportCollectForm.resx
├── ReportSupplierForm.cs
├── ReportSupplierForm.Designer.cs
├── ReportSupplierForm.resx
├── ReportWarehouseInForm.cs
├── ReportWarehouseInForm.Designer.cs
├── ReportWarehouseInForm.resx
├── ReportWarehouseOutForm.cs
├── ReportWarehouseOutForm.Designer.cs
├── ReportWarehouseOutForm.resx
├── SaleAddForm.cs
├── SaleAddForm.Designer.cs
├── SaleAddForm.resx
├── SaleGatheringForm.cs
└── SaleGatheringForm.Designer.cs
59 directories, 747 files
评论