True for Microsoft Publisher to show the catalog when starting up. Read/write Boolean.
expression.UseCatalogAtStartup
expression Required. An expression that returns one of the objects in the Applies To list.
This example sets global options for Microsoft Publisher, including not displaying the catalog upon startup.
Sub SetGlobalOptions()
With Options
.AutoFormatWord = True
.AutoKeyboardSwitching = True
.AutoSelectWord = True
.DragAndDropText = True
.UseCatalogAtStartup = False
.UseHelpfulMousePointers = False
End With
End Sub