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

📄 comtest.dpr

📁 This program I use to tested serial com and AT Command for testing GPRS for SIM300 GSM module
💻 DPR
字号:
program COMTest;

uses
  Forms,
  uCOMTest in 'uCOMTest.pas' {Form1},
  Unit2 in 'Unit2.pas' {frmDelay},
  Unit3 in 'Unit3.pas' {Form3};

//  uTools in '..\uTools.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.CreateForm(TfrmDelay, frmDelay);
  Application.CreateForm(TForm3, Form3);
  Application.Run;
end.

⌨️ 快捷键说明

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