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

📄 emailremind.dpr

📁 时监测邮箱中邮件信息
💻 DPR
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -