Thread: Help files
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Robin Hammond[_2_] Robin Hammond[_2_] is offline
external usenet poster
 
Posts: 575
Default Help files

If you are looking for a compiled help file, you can try Microsoft Help
Workshop, but it's a nightmare to use.

There are a lot of alternatives to try out. I looked around a while ago and
came up with HelpmaticPro, which works for me and seemed very good value.

The advantage of a proper help file is that you can launch context sensitive
help with something like this.

Sub RunHelp(nContextID As Long)
Dim strHelpFile As String
strHelpFile = ThisWorkbook.Path & "\EFAUSER.hlp"
Application.Help strHelpFile, nContextID
End Sub

Robin Hammond
www.enhanceddatasystems.com

"JFamilo" wrote in
message ...

How do I create a help file for my userform? Is there a program I need?

Thanks


--
JFamilo
------------------------------------------------------------------------
JFamilo's Profile:
http://www.excelforum.com/member.php...o&userid=17276
View this thread: http://www.excelforum.com/showthread...hreadid=381754