flashp~1.dpr

来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· DPR 代码 · 共 27 行

DPR
27
字号
program Project1;

uses
  Windows,
  SysUtils,
  Forms,
  Unit1 in 'Unit1.pas' {Form1},
  Unit2 in 'Unit2.pas' {Form2};

{$R *.RES}
var
 s:string;

begin
  s:=extractfilepath(application.ExeName)+'FlashPlay.ini';
  if FileExists(s)=false then
  begin
   messagebox(0,'找不到程序运行所需的ini文件!','运行',0);
   halt;
  end; 
  Application.Initialize;
  Application.Title := 'FlashPlayer';
  Application.CreateForm(TForm1, Form1);
  Application.CreateForm(TForm2, Form2);
  Application.Run;
end.

⌨️ 快捷键说明

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