chm

What is the recommended help file format to use in a modern Windows app?

丶灬走出姿态 提交于 2019-12-06 20:18:45
问题 I am developing a WinForms application and would like to integrate help into it. In the past I integrated .chm help files. Regarding .chm files, this Wiki article states: In 2002, Microsoft announced security risks associated with the .CHM format, as well as security bulletins and patches. They have since announced their intentions not to develop the .CHM format further. From what I have read, Microsoft Help 2.x was the help engine used in VS 2008 and Office 2007 using .hxs file extension

How do you open a hxs file?

倖福魔咒の 提交于 2019-12-06 17:55:27
问题 I understand that a hxs file is a compiled help file, a replacement for .chm files, but I can't seem to open them. I've read that you read them with the help explorer, dexplore.exe found here: C:\Program Files\Common Files\microsoft shared\Help 9\dexplore.exe When I try opening the file with dexplore, it asks me to save the file to disk, or open with another program. Any ideas? 回答1: Not sure if you want to look through them programmatically or with some tool, but Help Explorer can open hxs

HTML Help Workshop - Is it possible to use CSS or JavaScript within a .CHM file?

旧巷老猫 提交于 2019-12-06 11:17:29
I'm in the process of creating .chm files and was curious to know if these options are available? Of course you can use CSS. JavaScript not in all cases. See HTMLHelp - Linking . Make sure your design.css is inside you project level structure and added to the [FILES] section of your HHP project file. You can open this *.hhp file with e.g. Notepad++ to add files. If the files are listed in the [FILES] section the compiler includes them to the CHM file. [FILES] welcome.htm design.css First_Steps\download.htm First_Steps\starting_program.htm How_to_extend\extend_menu.htm How_to_extend\power

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 create a chm help file for WPF Application?

[亡魂溺海] 提交于 2019-12-06 04:54:42
问题 For a WPF UI application, a CHM Help file needs to be created. How to create a chm help file? First create the document in ms word and convert it into chm help file? or any other method? Please help Thanks Ramm 回答1: I used Sandcastle Help File Builder (SHFB) to generate the CHM. To write the content, I followed the guidance and example in the Sandcastle MAML Guide, available on codeplex. This involved me writing doc in a format called "MAML", which is an XML dialect for describing the help

How can I create .chm files from C# code?

自作多情 提交于 2019-12-05 05:57:23
I used doxygen to create HTML files, now I want to convert that documentation into .chm format. How can I do this? NDoc is a dead project, it's successor is Sandcastle & Sandcastle Helpfile Builder . I've used both of the Sandcastle items. They're easy to setup, have decent documentation and chm file generation is native to the application. If you can switch, it would be a much better choice than doxygen. Otherwise check out this link for HTML to chm info: http://younsi.blogspot.com/2007/04/doxygen-to-html-to-chm.html The original NDoc project is dead, but there is a new project called NDoc3 .

What is the recommended help file format to use in a modern Windows app?

大城市里の小女人 提交于 2019-12-05 01:30:47
I am developing a WinForms application and would like to integrate help into it. In the past I integrated .chm help files. Regarding .chm files, this Wiki article states: In 2002, Microsoft announced security risks associated with the .CHM format, as well as security bulletins and patches. They have since announced their intentions not to develop the .CHM format further. From what I have read, Microsoft Help 2.x was the help engine used in VS 2008 and Office 2007 using .hxs file extension help files. What is used in Office 2010? What is the recommended help file format to be used? Update: I

How do you open a hxs file?

两盒软妹~` 提交于 2019-12-04 23:30:46
I understand that a hxs file is a compiled help file, a replacement for .chm files, but I can't seem to open them. I've read that you read them with the help explorer, dexplore.exe found here: C:\Program Files\Common Files\microsoft shared\Help 9\dexplore.exe When I try opening the file with dexplore, it asks me to save the file to disk, or open with another program. Any ideas? Todd Rowan Not sure if you want to look through them programmatically or with some tool, but Help Explorer can open hxs files and extract contents. CHM files (the precursor to hxs) were a custom binary format with

Use Lua To Open .chm At Defined Index Page

扶醉桌前 提交于 2019-12-04 22:54:53
I wish to open a specific page within a .chm file from lua, but can not find any resources that would instruct me as to how how this task may be accomplished. If someone could provide some code that would open an index page named "Test2" in a file named "TestFile.chm" from lua I would greatly appreciate it. Thank you very much :) There are two separate problems here. First, how to open a CHM file at all from Lua, and second, how to open it at a specific page. The first is straightforward, making the assumption that you are on a Windows box and things are set up in the usual way. Given that, os

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