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

📄 emailtogsm.~dpr

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

uses
  Forms,
  Main in 'Main.pas' {frmMain},
  LeftView in 'LeftView.pas' {frmLeft: TFrame},
  RightView in 'RightView.pas' {frmRight: TFrame},
  TopView in 'TopView.pas' {frmTop: TFrame},
  BottomView in 'BottomView.pas' {frmBottom: TFrame},
  Account in 'Account.pas' {frmAccount},
  CoreData in 'CoreData.pas',
  Config in 'Config.pas' {frmConfig},
  Login in 'Login.pas' {frmLogin};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TfrmMain, frmMain);
  Application.CreateForm(TfrmAccount, frmAccount);
  Application.CreateForm(TfrmConfig, frmConfig);
  Application.CreateForm(TfrmLogin, frmLogin);
  Application.Run;
end.

⌨️ 快捷键说明

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