title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.ShowStartupDialog property (PowerPoint) |
vbapp10.chm502051 |
|
|
acbd2597-c835-e285-e52c-5c86349d3199 |
06/08/2017 |
medium |
Determines whether to display the New Presentation task pane when Microsoft PowerPoint is started. Read/write.
expression. ShowStartupDialog
expression A variable that represents an Application object.
MsoTriState
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. |
The following line of code hides the New Presentation task pane when PowerPoint starts.
Sub DontShowStartup()
Application.ShowStartupDialog = msoFalse
End Sub
[!includeSupport and feedback]