酒店管理系统

源代码在线查看: hotel.~dpr

软件大小: 923 K
上传用户: yzhowl
关键词: 管理系统
下载地址: 免注册下载 普通下载 VIP

相关代码

				program hotel;
				
				uses
				  Forms,
				  MainForm in 'MainForm.pas' {Main},
				  ParentForm in 'ParentForm.pas' {Parent},
				  RoomTypeForm in 'RoomTypeForm.pas' {RoomType},
				  RoomInfoForm in 'RoomInfoForm.pas' {RoomInfo},
				  ReservationForm in 'ReservationForm.pas' {Reservation},
				  DebtForm in 'DebtForm.pas' {Debt},
				  RoomStatusForm in 'RoomStatusForm.pas' {RoomStatus},
				  ResideForm in 'ResideForm.pas' {Reside},
				  CheckOutForm in 'CheckOutForm.pas' {CheckOut};
				
				{$R *.res}
				
				begin
				  Application.Initialize;
				  Application.Title := '酒店管理系统';
				  Application.CreateForm(TMain, Main);
				  Application.CreateForm(TCheckOut, CheckOut);
				  Application.Run;
				end.
							

相关资源