|
Property:
Err.HelpFile
object.HelpFile [ = contextID]
This property is used to get or define the path to a Help file. Once set, this Help file is available to the user when pressing the 'Help' button in the Message box. If the HelpContext property is set then the Help file that the context Id points to will be displayed and, if no HelpFile is specified, the VBScript Help contents screen is used.
Code:
On Error Resume Next
Err.Raise 10
Err.HelpFile = "userhelp.hlp"
Err.HelpContext = usercontextID
If Err.Number <> 0 Then MsgBox "Press F1 for help", , "Error: " & Err.Description, Err.Helpfile, _
Err.HelpContext
End If
Copyright 1999 by Infinite Software Solutions, Inc.
Trademark Information
|