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?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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
回答2:
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.