html-help

htmlhelp.lib for Visual Studio 2012 MFC app?

浪尽此生 提交于 2019-12-12 04:45:00
问题 Anyone know of 3rd party or open source alternatives to MS' old htmlhelp.lib library? It was compiled w/ an older version of Visual Studio and apparently is no longer supported. I'm porting an old program to VS.2012. Looks like the official way to do this is a bit hackish...you have to create a new app w/ HTML help using the MFC Wizard and then merge all your old code into it :-P http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/045a2e45-01cb-4be3-afc5-f1473496760f/ EDIT: Note:

Where to specify topic id in c# windows application

假如想象 提交于 2019-12-11 15:14:45
问题 I am new to C# windows application.I would like to add custom help file using help provider from the toolbar in Microsoft visual studio 2010 for windows application. I can add my help file and that is working fine. I'd like to context-sensitive help and that is working fine with Help.ShowHelp() . In the properties window we have a HelpNavigator property where it has options like .Topic , .TopicId , .AssociateIndex , .TableOfContents , .Index , .Find . I have chosen .TopicId but i am wondering

open topic in merged chm file in master chm file window

只愿长相守 提交于 2019-12-11 03:03:31
问题 I would like to open topic in merged chm file in master chm file windows. I have main chm file of application help. So this main chm file includes sub chm file. And I would like to open the topic in sub (merged) chm file in the window of main chm file by calling htmlhelp function. The following is header file in main chm project.And operation\ACORD_geometry.chm is merged chm file. Now I'm using Adobe robohelp. [ALIAS] IDH_operation_geometry=operation\ACORD_geometry.chm:\HID_geometrytab

Command-line options for HH and opening CHM Windows Help Files

邮差的信 提交于 2019-12-08 04:55:15
问题 I'd like to be able to write Inquisit scripts in Vim. In the standard Inquisit application for writing scripts, I can press F1 and it brings up help on the topic related to the word under the cursor. I'd like to set up the same functionality through Vim. The help file for Inquisit is stored in a Windows .CHM file. I figured there must be a set of command-line options for doing a keyword search in a chm file, but I haven't been able to find a complete list of the command-line options,

Command-line options for HH and opening CHM Windows Help Files

社会主义新天地 提交于 2019-12-08 04:20:32
I'd like to be able to write Inquisit scripts in Vim. In the standard Inquisit application for writing scripts, I can press F1 and it brings up help on the topic related to the word under the cursor. I'd like to set up the same functionality through Vim. The help file for Inquisit is stored in a Windows .CHM file. I figured there must be a set of command-line options for doing a keyword search in a chm file, but I haven't been able to find a complete list of the command-line options, presumably for HH.exe. I did find HTML Help command-line article from help-info.de with a few pointers, but it

How to use CHM HTML Help file with Delphi XE application?

浪子不回头ぞ 提交于 2019-12-06 04:58:28
问题 Delphi - How to use CHM HTML Help file with Delphi XE application? http://edn.embarcadero.com/article/27842 article describes how to use CHM file. I did all the steps described there. Added const HH_DISPLAY_TOPIC = $0000; HH_DISPLAY_TOC = $0001; HH_CLOSE_ALL = $0012; function HtmlHelp(hwndCaller: HWND; pszFile: PChar; uCommand: UINT; dwData: DWORD): HWND; stdcall; external 'HHCTRL.OCX' name 'HtmlHelpA'; and public function HH` function TForm1.HH(Command: Word; Data: Integer; var CallHelp:

How to use CHM HTML Help file with Delphi XE application?

落爺英雄遲暮 提交于 2019-12-04 11:14:19
Delphi - How to use CHM HTML Help file with Delphi XE application? http://edn.embarcadero.com/article/27842 article describes how to use CHM file. I did all the steps described there. Added const HH_DISPLAY_TOPIC = $0000; HH_DISPLAY_TOC = $0001; HH_CLOSE_ALL = $0012; function HtmlHelp(hwndCaller: HWND; pszFile: PChar; uCommand: UINT; dwData: DWORD): HWND; stdcall; external 'HHCTRL.OCX' name 'HtmlHelpA'; and public function HH` function TForm1.HH(Command: Word; Data: Integer; var CallHelp: Boolean): Boolean; begin if (Command = 0) and (Data = 0) then HtmlHelp(Application.Handle, PChar

Delphi XE2: Jumping to an anchor in CHM?

放肆的年华 提交于 2019-12-01 05:22:43
In a Delphi XE2 program, how do I jump to an anchor inside a CHM help file topic? The anchor has the following format (extracted from the source of the topic page in HTML HelpViewer showing the CHM file): <a name="my_anchor_id"></a> I tried the following: Application.HelpJump('MyTopicName.htm#my_anchor_id'); Unfortunately, this does not work: It does jump to this topic, but only to the top of the topic, not to the anchor, which is several scrolls down the page. Jumping to an anchor in CHM Tested with Delphi2010 - DelphiXE2 - Windows XP How to jump to an anchor in a chm file (Compiled HTML Help

How to add support of HTML help files (.chm) on Delphi XE2?

心不动则不痛 提交于 2019-11-27 06:38:52
问题 How to add support of HTML help files (.chm) on Delphi XE2? We need to use A-links (A-keywords) on HelpContext property of every control to lookup help pages. Delphi XE2 has native support of HTML help files by unit HTMLHelpViewer . But how to use it? 回答1: I suspect that to use A-links you need to do the following: Assign an Application.OnHelp handler as described below. Assign Application.HelpFile during program startup. Call Application.HelpKeyword if you wish to invoke the help system with