Correct Procedure to Open Help File?

J

JK

My toolbar has a function to open a help (.hlp) file. I am using this code:

Sub HelpMenu()
'FULL HELP MENU
Application.Help ActiveWorkbook.Path & "\Help.hlp", 1500
End Sub
Sub HelpMenu2()
'HELP WITH OPEN FORM
If Sheets("PropInfo") Is ActiveSheet Then
Application.Help ActiveWorkbook.Path & "\Help.hlp", 13000
End If
End Sub

Though it works correctly on my computer (I can bring up the help file) some
users are not able to. I know the .hlp file is installed in the correct
folder. Is there something wrong with my procedure? Please help. Thank you.

Jim Kobzeff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top