Displays online Help information.
expression.Help(HelpType)
expression Required. An expression that returns one of the objects in the Applies To list.
HelpType Required PbHelpType. The type of help to display.
PbHelpType can be one of these PbHelpType constants. |
pbHelp Displays the Help Topics dialog box. |
pbHelpActiveWindow Displays Help describing the command associated with the active view or pane. |
pbHelpPrintTroubleshooter Displays Help for troubleshooting printing problems. |
pbHelpPSSHelp Displays product support information. |
pbHelpTutorials Displays the tutorials Help topic. |
pbHelpUsingHelp Displays a list of Help topics that describe how to use Help. |
Some of the constants listed above may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
This example displays a list of topics for troubleshooting printing problems.
Sub ShowPrintTroubleshooter()
Application.Help (HelpType:=pbHelpPrintTroubleshooter)
End Sub