+ Reply to Thread
Results 1 to 3 of 3

Creating a help file

  1. #1
    Yoam69
    Guest

    Creating a help file

    Is it possible to create a simple help file in VB for excel without the use
    of a developer tool kit?

  2. #2
    Robin Hammond
    Guest

    Re: Creating a help file

    Yes, but there are lots and lots of ways to do it. I eventually ended up
    using this: http://www.helpmatic.net. I'm not affiliated with them in any
    way. It does the job at a reasonable price. You can then have context
    sensitive help with something like this:

    'in form code
    Sub cmdHelp_Click()
    XHelp 17 'open help topic 17
    End Sub

    'in general module
    Public Sub XHelp(lContextID As Long)
    Dim strHelpFile As String
    strHelpFile = shMenu.Parent.Path & "\HelpFile.hlp"
    Application.Help strHelpFile, lContextID
    End Sub

    Robin Hammond
    www.enhanceddatasystems.com

    "Yoam69" <Yoam69@discussions.microsoft.com> wrote in message
    news:B5FF46FE-516E-4E5D-9D8C-BD264274FEDB@microsoft.com...
    > Is it possible to create a simple help file in VB for excel without the
    > use
    > of a developer tool kit?




  3. #3
    Yoam69
    Guest

    Re: Creating a help file

    Thanks Robin

    "Robin Hammond" wrote:

    > Yes, but there are lots and lots of ways to do it. I eventually ended up
    > using this: http://www.helpmatic.net. I'm not affiliated with them in any
    > way. It does the job at a reasonable price. You can then have context
    > sensitive help with something like this:
    >
    > 'in form code
    > Sub cmdHelp_Click()
    > XHelp 17 'open help topic 17
    > End Sub
    >
    > 'in general module
    > Public Sub XHelp(lContextID As Long)
    > Dim strHelpFile As String
    > strHelpFile = shMenu.Parent.Path & "\HelpFile.hlp"
    > Application.Help strHelpFile, lContextID
    > End Sub
    >
    > Robin Hammond
    > www.enhanceddatasystems.com
    >
    > "Yoam69" <Yoam69@discussions.microsoft.com> wrote in message
    > news:B5FF46FE-516E-4E5D-9D8C-BD264274FEDB@microsoft.com...
    > > Is it possible to create a simple help file in VB for excel without the
    > > use
    > > of a developer tool kit?

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1