project1.dpr

来自「针对信息进行帅选Delphi筛选系统」· DPR 代码 · 共 18 行

DPR
18
字号
program Project1;

uses
  Forms,
  main in 'main.pas' {Form1},
  ExcelOut in 'ExcelOut.pas',
  Showhit in 'Showhit.pas' {showhitForm},
  About in 'About.pas' {Form2};

{$R *.res}

begin
  Application.Initialize;
  Application.Title := '信息筛选系统';
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

⌨️ 快捷键说明

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