|
-
May 27th, 2008, 04:10 AM
#1
Thread Starter
Fanatic Member
[2005] Producing hekp files
Hi folks,
I have just been asked to add some help files to a large windows application I have written and was wondering if you guys had any tips/tricks/tools you could share with me.
I always assumed VS.net had some built in tools for this but looks like I'm wrong as usual.
Thanks In Advance
-
May 27th, 2008, 05:42 AM
#2
Fanatic Member
Re: [2005] Producing hekp files
I use this. It's free, open-source and does the job perfectly well
http://www.vizacc.com/
ManagePC - the all-in-one PC management and inventory tool
-
May 27th, 2008, 10:23 AM
#3
Re: [2005] Producing hekp files
 Originally Posted by venerable bede
Hi folks,
I have just been asked to add some help files to a large windows application I have written and was wondering if you guys had any tips/tricks/tools you could share with me.
I always assumed VS.net had some built in tools for this but looks like I'm wrong as usual.
Thanks In Advance
Hi,
You can use the HelpProvider for that.
That means when you click the F1 button then the help file will open.
Here's a link how to use it:
http://msdn.microsoft.com/en-us/libr...pprovider.aspx
Wkr,
sparrow1
-
May 27th, 2008, 10:58 AM
#4
Re: [2005] Producing hekp files
VS 2005 does have a "help" system built in. You can comment your code w/ xml style tags that get compiled into an xml file when you compile your source code. Then you can take that xml and convert it yourself or use something like Sandcastle to do the converting
VB.NET Code:
''' <summary>
''' Procedure takes the object that is passed finds the form, stores both the form and control.
''' </summary>
''' <param name="sender">This is the object that the DragDrop will be captured for.</param>
''' <remarks></remarks>
Public Sub New(ByVal sender As System.Object)
'Code here
End Sub
Edit:Added Example Code
-
May 27th, 2008, 02:29 PM
#5
Re: [2005] Producing hekp files
Doc2Help by ComponentOne.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|