Tagged Questions
The helpfile tag has no wiki summary.
23
votes
18answers
5k 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 ...
10
votes
6answers
2k views
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.
9
votes
5answers
2k views
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 ...
6
votes
2answers
99 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
785 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 ...
4
votes
2answers
39 views
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 ...
4
votes
1answer
188 views
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 ...
4
votes
2answers
548 views
Context help in Visual Studio
Is there a way to change the context sensitive help in Visual Studio so that it will only search against the text under the caret instead of a complilation error in your code?
More info:
After you ...
3
votes
3answers
624 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!
3
votes
1answer
354 views
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 ...
2
votes
0answers
102 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, ...
2
votes
1answer
45 views
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 here...
...
2
votes
1answer
248 views
Sandcastle setup - Navigation to webpage was canceled
I am try to use Sandcastle Help File Builder, but can't quite get it to work. Here is what I have done:
1) installed the program; works like normal
2) enabled xml in the project I want documentation ...
2
votes
5answers
299 views
How to create a help file
I want to create a help file opens when pressed F1 anytime. How to create it and include to code?
2
votes
2answers
287 views
Editor for end user documentation in C# WinForm app
I'm developing a WinForm app in c# 4.0 and would like other (non-developer) colleagues to contribute writing a context sensitive end-user helpfile. First I thought I could use "HTML Help Workshop" ...
2
votes
2answers
95 views
Creating helpfile in HTML
I am facing the fun task of creating a Help File for a large project. I have discarded CHM files due to the constraints and are now looking into HTML based files but I am still undecided on the ...
1
vote
1answer
56 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
1answer
60 views
Nuget and Visual Studio Help
Are there any conventions, patterns, or tools for offering Visual Studio help files with Nuget?
1
vote
2answers
100 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 ...
1
vote
1answer
134 views
Innosetup - reference a file from [Code] before the installation starts
This is sort of a continuation of this question. I have a file that I want to include with my installation package (a .CHM help file) that I need to access during installation from code. It doesn't ...
1
vote
1answer
67 views
Database or format for help system?
I'm implementing a help system for my app. Its written in C and Gtk+.
Help is divided on books. Each book is just a bunch of HTML pages with resource.
The problem I've encountered is that each book is ...
1
vote
1answer
737 views
Can I programmatically export class diagrams from Visual Studio 2008?
I can export a class diagram as an image from Visual Studio by right-clicking on the surface and choosing "Export Diagram as Image..."
Is there a way to do this through command line? I'd like to ...
1
vote
2answers
547 views
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 ...
0
votes
1answer
96 views
including help file in Delphi app
I have help file "help.hap" I add him to app by typing his name in app properti under HelpFile. Then I add
procedure TForm1.Pomoc1Click(Sender: TObject);
begin
Application.HelpContext(0);
end;
But ...
0
votes
1answer
39 views
Export .page to .html
I will write help for my PyGTK app. The help consists of .page files. I would like to export this help to HTML/CSS and publish it as online help on app website.
Is there a tool which can export it to ...
0
votes
0answers
11 views
Bulk-edit HelpContext and/or HelpKeyword of project files?
currently I'm editing the HelpContext and/or HelpKeyword properties of the appropriate controls one after another in my D2009 project forms, where applicable.
Is there any tool which can collect all ...
0
votes
1answer
38 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
27 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
1answer
200 views
C# wpf html help file
C3, WPF, Windows 7, Microsoft Ribbon, Visual studio 2010, dotnet 4.5
I would like to write the help files in html and include them inside the .exe file as an resource.
Is there a way of telling the ...
0
votes
0answers
54 views
Registering Help Book in Qt app
I am building a Qt application on Mac OS X and I decided to create a Help book. I attempted to use the official docs, but the help book does not appear in the help menu.
The help book is located in ...
0
votes
2answers
273 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 ...
0
votes
1answer
63 views
Creating standalone help files
Currently I'm wrapping up an application at the moment, and I'm at the stage where I need to document the application for anyone who wants to use it.
At this point, I just need something that will ...
0
votes
3answers
188 views
Help files .. formats?
I found this interesting discussion regarding help file formats and the future direction they may take. We are at a crossroad with our new .NET project in that we need to decide on the best format for ...
0
votes
1answer
138 views
Help file like Microsoft Office's
I am developing an Outlook add-in and I want to create a help file for it. Currently I am using CHM file.
Is there a tool to create help file like Microsoft office's? If not, how can I create a ...