This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
HelpFile Property Example
This example uses the
HelpFile property of the
Err object to start the Help system. By default, the
HelpFile property contains the name of the Visual Basic Help file.
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
, Err.HelpContext