Results 1 to 5 of 5

Thread: [2005] Producing hekp files

  1. #1

    Thread Starter
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    [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

    Parksie

  2. #2
    Fanatic Member
    Join Date
    Apr 2006
    Posts
    746

    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

  3. #3
    PowerPoster sparrow1's Avatar
    Join Date
    May 2005
    Location
    Globetrotter
    Posts
    2,820

    Re: [2005] Producing hekp files

    Quote 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
    Wkr,
    sparrow1

    If I helped you, don't forget to Rate my post. Thank you

    I'm using Visual Studio.Net 2003 and
    2005
    How to learn VB.Net Create setup with VB 2005 Drawing for beginners VB.Net Tutorials GDI+ Tutorials
    Video's for beginners

  4. #4
    Hyperactive Member ProphetBeal's Avatar
    Join Date
    Aug 2006
    Location
    New York
    Posts
    424

    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:
    1. ''' <summary>
    2. ''' Procedure takes the object that is passed finds the form, stores both the form and control.
    3. ''' </summary>
    4. ''' <param name="sender">This is the object that the DragDrop will be captured for.</param>
    5. ''' <remarks></remarks>
    6. Public Sub New(ByVal sender As System.Object)
    7. 'Code here
    8. End Sub
    Edit:Added Example Code

    Helpful Links:
    VB 6 - How to get the "Key" Value in a collection
    VB.NET - File Search Utility || VB.NET - How to compare 2 directories || VB.NET - How to trust a network share
    VB.NET - Create Excel Spreadsheet From Array || VB.NET - Example Code & Hints you may not know
    VB.NET - Save JPEG with a certain quality (image compression) || VB.NET - DragDrop Files, Emails, and Email Attachments

    Please post some of the code you need help with (it makes it easier to help you)
    If your problem has been solved then please mark the thread [RESOLVED].
    Don't forget to Rate this post

    "Pinky, you give a whole new meaning to the phrase, 'counter-intelligence'."-The Brain-

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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
  •  



Click Here to Expand Forum to Full Width