securemail.dpr

来自「著名的SecureBlackBox控件完整源码」· DPR 代码 · 共 31 行

DPR
31
字号
program SecureMail;

//{$I SecBbox.inc}

{ if you get the message: "File not found System.Drawing.dcuil",
then you need to make a reference to System.Drawing
}
//{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}

uses
{$IFDEF DELPHI_NET}
  System.Drawing,
  Borland.Vcl.Forms,
{$ELSE}
  Forms,
{$ENDIF}
  MainForm in 'MainForm.pas' {frmMain};

{$R *.res}

{$IFDEF DELPHI_NET}
[STAThread]
{$ENDIF}

begin
  Application.Title := 'Secure Mail';
  Application.Initialize;
  Application.CreateForm(TfrmMain, frmMain);
  Application.Run;
end.

⌨️ 快捷键说明

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