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

📄 madint.dpr

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

uses
  Forms,
  Init in 'INIT.PAS' {frmInit},
  Convert in 'Convert.pas' {frmConverting},
  DataShow in 'DATASHOW.PAS' {frmDataShow},
  Driver in '..\..\..\include\driver.pas',
  GetEvent in 'GetEvent.pas',
  PARAS in '..\..\..\INCLUDE\PARAS.pas',
  EVENT in '..\..\..\INCLUDE\Event.pas',
  GainListForm in 'GainListForm.pas' {frmGainList},
  Global in 'GLOBAL.PAS';

{$R *.RES}

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

⌨️ 快捷键说明

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