Application.ShowStartupDialog property (PowerPoint)

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

Syntax

expression. ShowStartupDialog

expression A variable that represents an 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.

Sub DontShowStartup()

    Application.ShowStartupDialog = msoFalse

End Sub

See also

Application Object

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.