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

📄 spy.~dpr

📁 一个远程监控程序
💻 ~DPR
字号:
program spy;

uses
  Forms,
  Umain in 'Umain.pas' {frmClient},
  About in 'About.pas' {frmAbout},
  JPG in 'JPG.pas' {frmJPG},
  Search in 'Search.pas' {searchform},
  Param in 'Param.pas' {frmParam},
  Message in 'Message.pas' {frmMessage},
  GetScreen in 'GetScreen.pas' {frmgetscreen};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TfrmClient, frmClient);
  Application.CreateForm(TfrmAbout, frmAbout);
  Application.CreateForm(TfrmJPG, frmJPG);
  Application.CreateForm(TSearchform, Searchform);
  Application.CreateForm(TfrmMessage, frmMessage);
  Application.CreateForm(TfrmParam, frmParam);
  Application.CreateForm(Tfrmgetscreen, frmgetscreen);
  Application.Run;
end.

⌨️ 快捷键说明

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