Application.ShowCatalogUI event (Publisher)

Fires when the catalog of publication wizards is displayed in the Microsoft Publisher user interface.

Syntax

expression.ShowCatalogUI

expression An expression that returns an Application object.

Remarks

Use the ShowWizardCatalog method to display the wizard catalog in the user interface.

The ShowCatalogUI event does not fire when the publication catalog is displayed when Publisher first starts. To determine if the catalog is displayed at that time, you can use the WizardCatalogVisible property.

For more information about using events with the Application object, see Using events with the Application object.

Example

The following Microsoft Visual Basic for Applications (VBA) macro shows how to handle the ShowCatalogUI event. It displays a message notifying the user that the catalog UI was displayed.

Private Sub pubApplication_ShowCatalogUI() 
 MsgBox "The Wizard Catalog is displayed." 
End Sub

For this event to occur, you must place the following line of code in the General Declarations section of your module.

Private WithEvents pubApplication As Application

You then must run the following initialization procedure.

Public Sub Initialize_pubApplication() 
 Set pubApplication = Publisher.Application 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.