diint.dpr

来自「usb4711A数据采集卡的DI转换通道程序」· DPR 代码 · 共 22 行

DPR
22
字号
program DIINT;

uses
  Forms,
  StartUp in 'StartUp.pas' {fStartUp},
  PMCfg in 'PMCfg.pas' {fPMConfig},
  SCCfg in 'SCCfg.pas' {fSCConfig},
  Driver in '..\..\..\..\INCLUDE\Driver.pas',
  Thread in 'Thread.pas',
  Event in '..\..\..\..\INCLUDE\Event.pas',
  PARAS in '..\..\..\..\INCLUDE\PARAS.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TfStartUp, fStartUp);
  Application.CreateForm(TfPMConfig, fPMConfig);
  Application.CreateForm(TfSCConfig, fSCConfig);
  Application.Run;
end.

⌨️ 快捷键说明

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