# HelpFile 属性
object.HelpFile [= contextID]
设置或返回帮助文件主题的上下文 ID。
参数 | 描述 |
---|---|
object | 必选项。Err 对象。 |
contextID | 可选项。帮助文件的完整有效路径。 |
说明 如果在 HelpFile 中指定帮助文件,则当用户在错误消息对话框中单击帮助按钮(或按 F1 键)时,自动调用此文件。如果 HelpContext 属性包含指定文件的有效上下文 ID ,则自动显示该主题。如果未指定 HelpFile,则显示 VBScript Help 文件。
On Error Resume Next
Dim Msg
Err.Clear
Err.Raise 6 '产生“溢出”错误。
Err.Helpfile = "yourHelp.hlp"
Err.HelpContext = yourContextID
If Err.Number <> 0 Then
Msg = "按下 F1 键或 Help 查看" & Err.Helpfile & "与下列 HelpContext " & _
" 有关的主题: " & Err.HelpContext
MsgBox Msg, , "错误: " & Err.Description, Err.Helpfile, Err.HelpContext
End If
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
应用于