toolhelpviewer.dpr
来自「全世界知名的Open Source Delphi开发组织JCL的作品。JCL包含」· DPR 代码 · 共 33 行
DPR
33 行
program ToolHelpViewer;
uses
Forms,
SysUtils,
JclAppInst,
Main in 'Main.pas' {MainForm},
ChangePriority in 'ChangePriority.pas' {ChangePriorityDlg},
HeapDump in 'HeapDump.pas' {HeapDumpForm},
MemoryDump in 'MemoryDump.pas' {MemoryDumpForm},
Global in 'Global.pas' {GlobalModule: TDataModule},
ViewTemplate in 'ViewTemplate.pas' {ViewForm},
ModulesDump in 'ModulesDump.pas' {ModulesDumpForm},
ToolsUtils in '..\Common\ToolsUtils.pas',
About in '..\Common\About.pas' {AboutBox},
FindDlg in '..\Common\FindDlg.pas' {FindForm},
ExceptDlg in '..\..\..\..\experts\debug\dialog\ExceptDlg.pas' {ExceptionDialog};
{$R *.RES}
begin
try
JclAppInstances.CheckSingleInstance;
Application.Initialize;
Application.Title := 'ToolHelp Viewer';
Application.CreateForm(TGlobalModule, GlobalModule);
Application.CreateForm(TMainForm, MainForm);
Application.Run;
except // fix for Delphi 5's RTL bug
SysUtils.ShowException(ExceptObject, ExceptAddr);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?