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

📄 monitor.~dpr

📁 求是科技出版的《Delphi串口通信工程开发实例导航》所有的源代码。是一本很好的书。拿出来与大家共享。
💻 ~DPR
字号:
program Monitor;

uses
  Forms,
  MainForm in 'MainForm.pas' {Main},
  DriverSelectForm in 'DriverSelectForm.pas' {frmDriverSelect},
  AboutForm in 'AboutForm.pas' {AboutDlg},
  AlertForm in 'AlertForm.pas' {frmAlertConfig},
  MonitorDM in 'MonitorDM.pas' {DMMain: TDataModule},
  CommonUnit in 'CommonUnit.pas',
  RecPersonForm in 'RecPersonForm.pas' {frmRecPerson},
  ParamForm in 'ParamForm.pas' {DlgVPara};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TDMMain, DMMain);
  Application.CreateForm(TfrmRecPerson, frmRecPerson);
  Application.CreateForm(TMain, Main);
  Application.CreateForm(TfrmAlertConfig, frmAlertConfig);
  Application.CreateForm(TfrmDriverSelect, frmDriverSelect);
  Application.CreateForm(TAboutDlg, AboutDlg);
  Application.CreateForm(TDlgVPara, DlgVPara);
  Application.Run;


end.

⌨️ 快捷键说明

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