在 Delphi 应用程序中包括帮助文件

发布于 2024-12-27 22:02:32 字数 265 浏览 0 评论 0原文

我有帮助文件“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宣告ˉ结束 2025-01-03 22:02:32

Help.hap 是 Help Author Pro 项目文件的名称。它不再是帮助文件,就像 .dpr Delphi 项目文件不再是可执行程序一样。

您可以使用帮助创作工具生成多种不同格式的文档,包括 HTML 和 RTF。生成实际的帮助文件,例如 help.hlphelp.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文