emailtogsm.~dpr
来自「邮件短信自动通知系统」· ~DPR 代码 · 共 25 行
~DPR
25 行
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 + =
减小字号Ctrl + -
显示快捷键?