小闹钟程序

源代码在线查看: myclock.dpr

软件大小: 332 K
上传用户: hh831
关键词: 闹钟 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				program MyClock;
				
				uses
				  Forms,
				  Clock in 'Clock.pas' {MainWnd},
				  Option in 'Option.pas' {frm_Option},
				  AlarmOption in 'AlarmOption.pas' {frmAlarmOption},
				  Control in 'Control.pas' {ControlModule: TDataModule},
				  SysEdit in 'SysEdit.pas' {SysEditor},
				  Adjust in 'Adjust.pas' {frmAdjust};
				
				{$R *.res}
				
				begin
				  Application.Initialize;
				  Application.CreateForm(TMainWnd, MainWnd);
				  Application.CreateForm(TControlModule, ControlModule);
				  Application.CreateForm(TfrmAlarmOption, frmAlarmOption);
				  Application.CreateForm(Tfrm_Option, frm_Option);
				  Application.CreateForm(TSysEditor, SysEditor);
				  Application.CreateForm(TfrmAdjust, frmAdjust);
				  Application.Run;
				end.
							

相关资源