emailremind.dpr
来自「delphi 完全原代码,可以在d7 and windows xp下编译通过」· DPR 代码 · 共 18 行
DPR
18 行
program emailRemind;
uses
Forms,
mainForm in 'mainForm.pas' {initForm},
messageBox in 'messageBox.pas' {MsgBox},
config in 'config.pas' {ConfigForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TinitForm, initForm);
Application.CreateForm(TMsgBox, MsgBox);
MsgBox.Hide;
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?