Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to create a simple help file in VB for excel without the use
of a developer tool kit? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
creating csv file | Excel Discussion (Misc queries) | |||
Creating automatic log file | Excel Discussion (Misc queries) | |||
Creating a CSV File from.... | Excel Discussion (Misc queries) | |||
creating new file | Excel Programming | |||
creating an exe file with visual basic (installation file for Macros and Userforms) | Excel Programming |