⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apprehenddemo.dpr

📁 Apprehend Screen Capture Component Version 4.2 A non-visible component to capture images. Freeware w
💻 DPR
字号:
program ApprehendDemo;

uses
  Forms,
  FrmMain in 'FrmMain.pas' {FormMain},
  fullscrn in 'fullscrn.pas' {FullScreen},
  ScreenDelay in 'ScreenDelay.pas' {DelayDlg},
  Splash in 'Splash.pas' {SplashForm};

{$R *.RES}

begin
  SplashForm := TSplashForm.Create(Application);
  try
    SplashForm.Show;
    SplashForm.Refresh;
    Application.Initialize;
    SplashForm.Update;
    Application.Title := 'Apprehend Demo';
    Application.CreateForm(TFormMain, FormMain);
    Application.CreateForm(TDelayDlg, DelayDlg);
    SplashForm.Close;
    repeat
      Application.ProcessMessages;
    until SplashForm.CloseQuery;
  finally
    SplashForm.Free;
  end;
  Application.Run;
end.

⌨️ 快捷键说明

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