Tagged Questions

23
votes
18answers
6k views

What are good tools for creating compiled HTML help files (.chm)?

I've seen a number of places recently that offer online HTML API documentation and also offer downloadable (usually .chm) help files. I really love using .chm help files, mainly because of the ...
11
votes
8answers
7k views

What tools are available to create a help file in Visual Studio 2010?

I need to write a help file for a WinForms app in Visual Studio 2010. Ideally, I'd like to use a tool that integrates with Visual Studio, rather than a totally separate tool. In the past I've used ...
6
votes
2answers
124 views

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

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 ...
5
votes
3answers
852 views

Get a list of topics from a chm file in C#

I am trying to get a chm file to open to a specific topic using c# code. I have tried using Help.ShowHelp(this, path, HelpNavigator.Topic, "TopicTitle"); but it doesn't find the page. I must not ...
3
votes
3answers
665 views

How to compile HTML files into CHM file?

How in my code (Delphi) to make CHM files from a bunch of HTML (with linked image files)? Details needed, thanks!
2
votes
0answers
121 views

Cannot use Cltr-F with CHM help file opened with Delphi XE2

With Delphi XE2 (Update 2) create a Win32 VCL application with a button on a form. Make sure HTMLHelpViewer is in the uses list. In FormCreate set the application help file to a valid CHM help file, ...
1
vote
1answer
71 views

XML/XSLT ALink Menu in CHM connecting params in reverse

I've been trying to figure out this XSLT/XML problem for the past few days (it's code I have the pleasure of trying to fix). Using XSLT, am grabbing what's in the XML tags "see" and trying to create a ...
1
vote
2answers
114 views

How to create internal Linking inside CHM help file

I am creating a Help file for a C# program i wrote. i am using Windows HTML helper to create the CHM file. how can i go about creating links within this to jump me to another page or another part of ...
0
votes
1answer
51 views

Creating Chm file [closed]

I want to create a chm file for my application. Which is the best and easiest free software available? I tried HTML Help Workshop, but it is very tough. Is there any free software available?
0
votes
1answer
49 views

Relating to folder locations when building help project in Winchm

I am using Winchm for building CHM files. The question that I am about to put up and the situation that I am about to elucidate specifically relates to Winchm and not to html or building help files in ...
0
votes
2answers
32 views

Strange behavior of CHM project

Anybody can help me with a strange problem I am having with my CHM based project? I took an existing CHM file and deconstructed the file using WinCHM. After that I added some new pages and compiled ...
0
votes
2answers
339 views

Clicking on a button to display .CHM help file in VB.NET

I want to display a .CHM help file when clicking on a button in VB.NET. Could anyone show me code how to do this? Private Sub cmdHelp_Click(ByVal sender As System.Objects, Byval e As ...