Click here to Skip to main content
6,595,854 members and growing! (18,601 online)
Email Password   helpLost your password?
Languages » C# » How To     Intermediate

Integrating Help into Visual Studio .NET

By Sune Trudslev

Document your C# code and have on-the-fly help directly integrated into Visual Studio .NET.
C#, VC7.1.NET 1.1, Win2K, WinXP, Win2003VS.NET2003, Dev
Posted:12 Jan 2004
Updated:17 Jan 2004
Views:95,575
Bookmarked:102 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
28 votes for this article.
Popularity: 5.92 Rating: 4.09 out of 5
3 votes, 10.7%
1

2
1 vote, 3.6%
3
8 votes, 28.6%
4
16 votes, 57.1%
5

Introduction

Working on a project of any size, we all know how important good documentation is. Getting to write it is another issue though.

C# and the Microsoft .NET Framework has taken measures to help you with that. An XML documenting standard has been introduced that you write directly into the source code; much like Javadoc for Java.

In this article, I will explain how to document using the XML tags, how to use NDoc to convert the XML into very nice looking HTML Help files, and last but not least, how to integrate the help into Visual Studio .NET.

Prerequisites

Before you can start documenting, you will need a couple of programs that are all available as free downloads:

I am not going to explain how to install these programs, they pretty much all install completely automatic. After installing all of those, you should be ready to start creating nifty documentation, that will be available directly in Visual Studio as Dynamic Help and Intellisense.

The actual commenting

The actual commenting of your source code is explained in this excellent article: C# Documenting and Commenting.

When you generate the NDoc documentation, you need to use the HtmlHelp2 format.

Using H2Reg to integrate the documentation into VS.NET

Usually, you would have to install a help file using a .msi install script. In this case, that is just way too much work. Fortunately, Helpware has made a small utility called H2Reg that can do it for us. It requires a configuration file and must be called from the command-line, so I thought a little helper program could make it a bit easier. There is a download link at the top of this article.

All you need to do now is fill in the fields and press Generate. The program will make a directory called Help in your project directory that will contain the configuration file, and two batch files that you can use to register and unregister the help files in Visual Studio .NET:

VS.NET Help Integrator Program - attached below

The help collection file you can find in the ./doc directory in your project directory (if you did not change the default NDoc directory, that is).

The program will generate the files in a directory called Help, one level above the NDoc directory. After you generate the files, you just need to run the register.bat batch file to register your help in Visual Studio .NET.

If you have problems with the collection not being registered, have a look at H2Reg's log file called C:\Program Files\Helpware\H2Reg\H2Reg_Log.txt (assuming you installed it in the default directory).

Including the help into Visual Studio .NET

The help files have now been activated and integrated into the Visual Studio Help Collection. You might need to restart Visual Studio .NET if you have it running.

Now we have context sensitive help, Intellisense and dynamic help:

VS.NET - fully integrated help

Conclusion

In a few simple steps, we have integrated help for our own code, pretty much all over the place.

To me, this is really a productivity booster. What about you?

Revision History

  • January 18th, 2004: Updated with new program and instructions to use HtmlHelp2.
  • January 22nd, 2004: Updated program to auto-register into Visual Studio's Help Collections, and updated article to reflect it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Sune Trudslev


Member
Sune has been programming since 1985.

He has worked with both assembler and many different programming languages, such as: Basic, Fortran, Pascal, C, C++, Delphi, and lately C#.

Sune is married and has two small children and is currently working as a developer for a Danish company called Skygate, currenly working on a cheap flight search engine called Momondo.

Personal blog can be found here.
Occupation: Web Developer
Location: Denmark Denmark

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 31 (Total in Forum: 31) (Refresh)FirstPrevNext
GeneralAccessing documentation from a network location PinmemberMuaddubby9:46 10 Feb '09  
Generalexporting databases accross ms sql server 2005 instances Pinmemberonyash.edd2:35 27 May '08  
GeneralHelp not showing up in VS 2003 Pinmemberechmyr6:23 18 Oct '05  
GeneralIntellisense? PinmemberJon Merrifield0:03 1 Jun '05  
GeneralPlease help PinmemberAspNetNet6:22 12 May '05  
GeneralProblems installing VSHIK 2003 PinsussAnonymous0:03 20 Sep '04  
GeneralRe: Problems installing VSHIK 2003 Pinmemberlonifasiko0:58 20 Sep '04  
GeneralMethods link to namespace PinsussXileh12:48 11 Jun '04  
GeneralRe: Methods link to namespace Pinmembertulling8:32 9 Dec '04  
GeneralNamed Indexes; How to register? PinmemberSameers (theAngrycodeR )4:26 25 May '04  
GeneralNew version of NDoc (beta) PinmemberDon Kackman8:27 28 Mar '04  
GeneralRe: New version of NDoc (beta) Pinmemberleppie12:16 28 Mar '04  
GeneralRe: New version of NDoc (beta) PinmemberSune Trudslev10:08 29 Mar '04  
GeneralProblem with links PinsussAnonymous9:58 23 Jan '04  
GeneralRe: Problem with links PinmemberSune Trudslev11:27 23 Jan '04  
GeneralProblems solved and automatic registration in VS collection PinmemberRossDonald18:52 21 Jan '04  
GeneralRe: Problems solved and automatic registration in VS collection PinmemberSune Trudslev22:27 21 Jan '04  
GeneralVSCC Doesnt see Help files PinmemberTom Guinther12:14 21 Jan '04  
GeneralRe: VSCC Doesnt see Help files PinmemberSune Trudslev22:25 21 Jan '04  
GeneralRe: VSCC Doesnt see Help files PinmemberTom Guinther12:17 22 Jan '04  
GeneralRe: VSCC Doesnt see Help files PinmemberSune Trudslev12:27 22 Jan '04  
General.hxc file? Pinmembersmallguy780:01 20 Jan '04  
GeneralRe: .hxc file? PinmemberSune Trudslev0:13 20 Jan '04  
GeneralRe: .hxc file? Pinmembersmallguy780:19 20 Jan '04  
GeneralRe: .hxc file? PinmemberDon Kackman5:59 20 Jan '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Jan 2004
Editor: Smitha Vijayan
Copyright 2004 by Sune Trudslev
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project