如何从 Borland C++ 打开 HTMLHelp (.chm) 文件应用

发布于 2024-12-08 14:09:43 字数 141 浏览 0 评论 0原文

我们有一个用 Borland C++ Builder 开发的遗留应用程序。现在我们已将帮助文件更新为 HtmlHelp (.chm) 文件,我们希望单击旧版 C++ 应用程序中的“帮助”按钮来打开 .chm 文件。我似乎找不到一个好的方法来做到这一点?有人可以帮忙吗?

We have a legacy application developed in Borland C++ Builder. Now we have updated the help file to HtmlHelp (.chm) file, we want to click on the Help button in the legacy c++ application to open the .chm file. It seems that I cannot find a good way to do this? Can anyone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暗喜 2024-12-15 14:09:43

我的应用程序使用 HTML 帮助,但使用较新版本的 C++ Builder。

这是我们如何将其包含在主窗体中的代码片段。

//helpviewer
#include "HTMLHelpViewer.hpp"
#pragma link "HTMLHelpViewer"

在formactivate中

Application->HelpFile = "some drive letter:\\some directory\\somehelpfile.chm";

显示帮助

Application->HelpCommand(HELP_CONTENTS,0);

希望这有一定的价值

My application uses HTML Help but in a newer version of C++ Builder.

Here is a code snipit of how we include it in the main form.

//helpviewer
#include "HTMLHelpViewer.hpp"
#pragma link "HTMLHelpViewer"

In the formactivate

Application->HelpFile = "some drive letter:\\some directory\\somehelpfile.chm";

To display the help

Application->HelpCommand(HELP_CONTENTS,0);

Hope this is of some value

蓝咒 2024-12-15 14:09:43

这个问题之前已经在 Borland/CodeGear/Embarcadero 论坛中被多次询问和回答过,并提供了完整的代码片段。在 http://www.deja.comhttp://forums.embarcadero.com

This has been asked and answered many times before, with full code snippets, in the Borland/CodeGear/Embarcadero forums. Search the archives at http://www.deja.com and http://forums.embarcadero.com.

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