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

📄 fileseeker.dpr

📁 文件搜索的代码
💻 DPR
字号:
program fileseeker;

uses
  Forms,
  Windows,
  main in 'main.pas' {FormMain},
  results in 'results.pas' {FormResults},
  about in 'about.pas' {FormAbout},
  txtext in 'txtext.pas' {FormCfgText};

{$R *.res}

var
  Mutex: THandle;

begin
  Mutex := CreateMutex(nil, True, '');
  if (Mutex = 0) OR (GetLastError = ERROR_ALREADY_EXISTS) then begin
  end else begin
   Application.Initialize;
   Application.Title := 'The File Seeker v0.3';
  Application.CreateForm(TFormMain, FormMain);
  Application.CreateForm(TFormResults, FormResults);
  Application.CreateForm(TFormAbout, FormAbout);
  Application.CreateForm(TFormCfgText, FormCfgText);
  Application.Run;
   if Mutex <> 0 then
    CloseHandle(Mutex);
  end;
end.

⌨️ 快捷键说明

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