在 Delphi 应用程序中包括帮助文件
我有帮助文件“help.hap”,我通过在 HelpFile 下的应用程序属性中输入他的名字将他添加到应用程序中。然后我添加
procedure TForm1.Pomoc1Click(Sender: TObject);
begin
Application.HelpContext(0);
end;
但我收到错误
未安装上下文相关帮助
WTF 我只是添加它吧?
I have help file "help.hap" I add him to app by typing his name in app properti under HelpFile. Then I add
procedure TForm1.Pomoc1Click(Sender: TObject);
begin
Application.HelpContext(0);
end;
But I get error
no context-sensitive help installed
WTF I just add it right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Help.hap 是 Help Author Pro 项目文件的名称。它不再是帮助文件,就像 .dpr Delphi 项目文件不再是可执行程序一样。
您可以使用帮助创作工具生成多种不同格式的文档,包括 HTML 和 RTF。生成实际的帮助文件,例如 help.hlp 或 help.chm。
Help.hap is the name of your Help Author Pro project file. It is no more a help file than your .dpr Delphi project file is an executable program.
You can use your help-authoring tool to generate documentation in several different formats, including HTML and RTF. Generate an actual help file, such as help.hlp or help.chm.