Share via


Help Method [Publisher 2003 VBA Language Reference]

Displays online Help information.

expression.Help(HelpType)

expression Required. An expression that returns one of the objects in the Applies To list.

PbHelpType

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.
pbHelpPSSHelp Displays product support information.

Remarks

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.

Example

This example displays a list of topics for troubleshooting printing problems.

Sub ShowPrintTroubleshooter()
    Application.Help (HelpType:=pbHelpPrintTroubleshooter)
End Sub

Applies to | Application Object