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
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