exceptionreportconverter.dpr

来自「最新版 JCL+JVCL控件!非常不错的控件资源。包含了所能用到的大部分功能!」· DPR 代码 · 共 19 行

DPR
19
字号
program ExceptionReportConverter;

{$I jcl.inc}

uses
  Forms,
  formConverter in 'formConverter.pas' {frmConverter},
  ExceptDlgMail in '..\..\..\..\EXPERTS\DEBUG\DIALOG\EXCEPTDLGMAIL.pas' {ExceptionDialogMail};

{$R *.res}
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}

begin
  Application.Initialize;
  Application.Title := 'Exception Report Converter';
  Application.CreateForm(TfrmConverter, frmConverter);
  Application.Run;
end.

⌨️ 快捷键说明

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