project1.dpr

来自「Delphi7应用编程150例 附书源码」· DPR 代码 · 共 22 行

DPR
22
字号
program Project1;

uses
  Forms,
  Dialogs,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  if ParamCount>0 then
  begin
      ShowMessage(ParamStr(1));
  end
  else
  begin
      Application.CreateForm(TForm1, Form1);
      Application.Run;
  end;
end.

⌨️ 快捷键说明

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