HelpContext 属性

返回或设置包含帮助文件中的主题的上下文 ID 的字符串表达式。 读/写。

备注

HelpContext属性用于自动显示 HelpFile 属性中指定的帮助主题。

如果 HelpFileHelpContext 均为空,则选中 Number 的值。 如果 Number 对应于 Visual Basic 运行时错误 值,则使用错误的 Visual Basic 帮助上下文 ID。 如果 Number 值未对应于一个 Visual Basic 错误,则显示 Visual Basic 帮助文件的上下文屏幕。

注意

[!注释] 您在应用程序中编写例程来处理典型错误。 在使用对象进行编程时,可以使用对象的帮助文件来改进错误处理,或者在错误不可恢复时向用户显示有用消息。

示例

此示例使用 Err 对象的 HelpContext 属性来显示错误的 Visual Basic 帮助主题Overflow

Dim Msg
Err.Clear
On Error Resume Next
Err.Raise 6 ' Generate "Overflow" error.
If Err.Number <> 0 Then
    Msg = "Press F1 or HELP to see " & Err.HelpFile & " topic for" & _
    " the following HelpContext: " & Err. HelpContext
    MsgBox Msg, , "Error: " & Err.Description, Err.HelpFile, _
Err.HelpContext
End If

另请参阅

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。