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 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.
Sub DontShowStartup()
Application.ShowStartupDialog = msoFalse
End Sub