Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 13
Default 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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default 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" wrote in message
...
Is it possible to create a simple help file in VB for excel without the
use
of a developer tool kit?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 13
Default 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" wrote in message
...
Is it possible to create a simple help file in VB for excel without the
use
of a developer tool kit?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
creating csv file Julie Excel Discussion (Misc queries) 3 March 23rd 09 08:51 PM
Creating automatic log file SeanD Excel Discussion (Misc queries) 0 February 6th 07 08:20 PM
Creating a CSV File from.... Nimish Excel Discussion (Misc queries) 0 October 4th 06 10:30 PM
creating new file Roy T Excel Programming 1 November 5th 04 05:30 AM
creating an exe file with visual basic (installation file for Macros and Userforms) [email protected] Excel Programming 3 August 5th 04 10:16 AM


All times are GMT +1. The time now is 03:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"