HelpFile 属性

返回或设置一个 字符串表达式 ,其中包含帮助文件的完全限定路径。 读/写。

备注

如果在 HelpFile 中指定帮助文件,则当用户按错误消息对话框中的“帮助”按钮(Windows 中的 F1 键或 Macintosh 上的 Help 键)时,将自动调用该文件。 如果 HelpContext 属性包含指定文件的有效上下文 ID,则会自动显示该主题。 If no HelpFile is specified, the Visual Basic Help file is displayed.

注意

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

示例

此示例使用 Err 对象的 HelpFile 属性启动帮助系统。 默认情况下, HelpFile 属性包含 Visual Basic 帮助文件的名称。

Dim Msg
Err.Clear
On Error Resume Next    ' Suppress errors for demonstration purposes.
Err.Raise 6    ' Generate "Overflow" error.
Msg = "Press F1 or HELP to see " & Err.HelpFile & _
" topic for this error"
MsgBox Msg, , "Error: " & Err.Description, Err.HelpFile

另请参阅

支持和反馈

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