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

📄 sightingsp.dpr

📁 source for card readers
💻 DPR
字号:
program SightingsP;

uses
  Forms,
  TemplateU in 'TemplateU.pas' {frmTemplate},
  MainFormU in 'MainFormU.pas' {frmMain},
  ShowInfoU in 'ShowInfoU.pas' {frmShowInfo},
  SightingU in 'SightingU.pas',
  GetInfoTemplateU in 'GetInfoTemplateU.pas' {frmGetInfoTemplate},
  GetTreeInfoU in 'GetTreeInfoU.pas' {frmGetTreeInfo},
  GetBirdInfoU in 'GetBirdInfoU.pas' {frmGetBirdInfo};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TfrmMain, frmMain);
  Application.CreateForm(TfrmTemplate, frmTemplate);
  Application.CreateForm(TfrmShowInfo, frmShowInfo);
  Application.CreateForm(TfrmGetInfoTemplate, frmGetInfoTemplate);
  Application.CreateForm(TfrmGetTreeInfo, frmGetTreeInfo);
  Application.CreateForm(TfrmGetBirdInfo, frmGetBirdInfo);
  Application.Run;
end.

⌨️ 快捷键说明

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