Help Method

Microsoft Publisher Visual Basic

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.
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