Application.ShowStartupDialog Property

PowerPoint Developer Reference

Determines whether to display the New Presentation task pane when Microsoft Office PowerPoint is started. Read/write.

Syntax

expression.ShowStartupDialog

expression   A variable that represents a Application object.

Return Value
MsoTriState

Remarks

The value of the ShowStartupDialog property can be one of these MsoTriState constants.

Constant Description
msoFalse Hides the New Presentation task pane.
msoTrue The default. Displays the New Presentation task pane.

Example

The following line of code hides the New Presentation task pane when PowerPoint starts.

Visual Basic for Applications
  Sub DontShowStartup()
    Application.ShowStartupDialog = msoFalse
End Sub

See Also