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

📄 cdaddma.dpr

📁 16 relay output channels and 16 isolated digital input channels LED indicators to show activated
💻 DPR
字号:
program CdAddma;

uses
  Forms,
  init in 'INIT.PAS' {frmInit},
  Driver in '..\..\..\include\driver.pas',
  GainList in 'Gainlist.pas' {frmGainList},
  CondList in 'CondList.pas' {frmConds},
  LevelLst in 'LevelLst.pas' {frmLevels},
  Convert in 'Convert.pas' {frmConverting},
  DataShow in 'Datashow.pas' {frmDataShow},
  GetEvent in 'Getevent.pas',
  PARAS in '..\..\..\INCLUDE\PARAS.pas',
  EVENT in '..\..\..\INCLUDE\Event.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TfrmInit, frmInit);
  Application.CreateForm(TfrmGainList, frmGainList);
  Application.CreateForm(TfrmConds, frmConds);
  Application.CreateForm(TfrmLevels, frmLevels);
  Application.CreateForm(TfrmConverting, frmConverting);
  Application.CreateForm(TfrmDataShow, frmDataShow);
  Application.Run;
end.

⌨️ 快捷键说明

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