A computer file explaining how to use the associated software.
Questions tagged [helpfile]
68 questions
25
votes
8 answers
Is there a free software for creating windows help files for your program?
Is there a free software for creating windows help files for your program?
I would like something that allows an output of both CHM and HTML files.

Brian R. Bondy
- 339,232
- 124
- 596
- 636
21
votes
4 answers
How to convert HLP files into CHM files
I need some help, I have some .hlp files and I want to convert it to .chm files, as .hlp files don't run on Windows 10.
How can I do that?

Cristhopher Mancilla
- 397
- 2
- 4
- 11
19
votes
9 answers
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 HTML Help Workshop, but this is ancient, and I…

Jon B
- 51,025
- 31
- 133
- 161
17
votes
2 answers
Open a .CHM file to a Specific Topic?
I have created a .CHM file and then when I open it in c# I get the First topic. I want to open it to a specified topic.
This is the code I use right now to open it.
Help.ShowHelp(this, "./Resources/ServerHelp.chm");
I want to be able to open it to…

Prince Champappilly
- 303
- 1
- 7
- 29
14
votes
3 answers
Does anyone know of a good MAML editor
At work we use Sandcastle for creation of help files. I have been using SandCastleGUI for some time and I'm looking for a way to create additional pages in the help file.
These pages are written in XML format called MAML.
The only problem is that…

Dror Helper
- 30,292
- 15
- 80
- 129
10
votes
2 answers
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 announced security risks associated with the .CHM format,…

Elan
- 6,084
- 12
- 64
- 84
8
votes
1 answer
Helpfile opened from modal window unresponsive
Using Delphi XE2, Win64.
So I have a large application with many forms and if I open the help file from the main form and open a modal window and then hit F1 to fire off context-sensitive help on the modal window the help file window shows with the…

TJ Asher
- 737
- 9
- 27
7
votes
4 answers
List all topics from a CHM file
I am trying to get a CHM file to open to a specific topic using C#.
I have tried using
Help.ShowHelp(this, path, HelpNavigator.Topic, "TopicTitle");
but it doesn't find the page. I must not be keying in the topic title correctly. Is there a way…

PICyourBrain
- 9,976
- 26
- 91
- 136
6
votes
3 answers
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!

Edwin Yip
- 4,089
- 4
- 40
- 86
6
votes
2 answers
How can I use a hlp file for context sensitive help in my application?
I have a .hlp file that goes with the application.
Because the functionality has not changed since I last wrote the app the hlp (written in 2003) is still valid.
However when I compile the app in Delphi XE7 I cannot get the application to recognose…

Johan
- 74,508
- 24
- 191
- 319
6
votes
1 answer
How can you include/reference a file in a project without copying it to the project directory?
I am writing an application in Visual Studio 2008.
I have a help file that I want to be included in the output of my project.
I want the most recent version of my help file to stay in a folder that is not my visual studio project directory. For…

PICyourBrain
- 9,976
- 26
- 91
- 136
5
votes
2 answers
Using the MSDN docs, is it possible to hide or filter inherited members?
One of the coolest features I've seen in help viewers is the ability to hide inherited members so you can focus on only what that particular subclass offers. A good example of this is…

Mark A. Donohoe
- 28,442
- 25
- 137
- 286
5
votes
1 answer
adding class diagrams from VS2008 to Sandcastle help file
I've made class diagrams for my projects in Visual Studio 2008 Team System and I want to embed these diagrams in my Sandcastle .chm file. I keep finding references to the Drawbridge component for Sandcastle but they apparently dealt with an older…

Sarah Vessels
- 30,930
- 33
- 155
- 222
5
votes
2 answers
Any light for TEventLogger?
I want to see about logging events from a Delphi 5 application to the Windows log, and from another post here I see that I can use the TEventLogger class to do this.
However, I can't find any documentation on the syntax of the…

Tom A
- 1,662
- 2
- 23
- 41
4
votes
2 answers
Best practice for CLI utility help file
I've finished implementing a command-line utility that parses arguments via getopt_long. To wrap things up, I need to implement a -h or --help switch that will print out the list of arguments as well as descriptions and default values.
Is there a…

Anonymous
- 1,750
- 3
- 16
- 21