newproject.dpr

来自「学习DELPHI的remobject4 目前我正在学习」· DPR 代码 · 共 21 行

DPR
21
字号
program NewProject;

{#ROGEN:NewLibrary.rodl} // RemObjects: Careful, do not remove!

uses
  uROComInit,
  SvcMgr,
  Unit1 in 'Unit1.pas' {Service1: TService},
  NewLibrary_Intf in 'NewLibrary_Intf.pas',
  NewLibrary_Invk in 'NewLibrary_Invk.pas',
  NewService_Impl in 'NewService_Impl.pas' {NewService: TRORemoteDataModule};

{$R *.RES}
{$R RODLFile.res}

begin
  Application.Initialize;
  Application.CreateForm(TService1, Service1);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?