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

📄 videocap.~dpr

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

uses
  Forms,
  frmMain in 'frmMain.pas' {Main},
  DlgTreiber in 'DlgTreiber.pas' {frmDriverSelect},
  frmPara in 'frmPara.pas' {DlgVPara},
  aboutx in 'aboutx.pas' {AboutDlg},
  AlertForm in 'AlertForm.pas' {frmAlertConfig},
  ControlClass in 'ControlClass.pas',
  MonitorDM in 'D:\Program Files\Borland\Delphi5\lib\MonitorDM.pas' {DMMain: TDataModule};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TMain, Main);
  Application.CreateForm(TAboutDlg, AboutDlg);
  Application.CreateForm(TfrmAlertConfig, frmAlertConfig);
  Application.CreateForm(TDMMain, DMMain);
  Application.Run;


end.

⌨️ 快捷键说明

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