Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.03 KB

Excel.Application.ShowStartupDialog.md

File metadata and controls

46 lines (29 loc) · 1.03 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.ShowStartupDialog property (Excel)
vbaxl10.chm133287
vbaxl10.chm133287
Excel.Application.ShowStartupDialog
8ea751c4-a4b1-a84a-9566-c4de8c5b9f67
04/05/2019
medium

Application.ShowStartupDialog property (Excel)

Returns True (default is False) when the New Workbook task pane appears for a Microsoft Excel application. Read/write Boolean.

Syntax

expression.ShowStartupDialog

expression A variable that represents an Application object.

Example

In this example, Excel determines if the New Workbook task pane appears and notifies the user.

Sub CheckStartupDialog() 
 
 ' Determine if the New Workbook task pane is enabled. 
 If Application.ShowStartupDialog = False Then 
 MsgBox "ShowStartupDialog is set to False." 
 Else 
 MsgBox "ShowStartupDialog is set to True." 
 End If 
 
End Sub

[!includeSupport and feedback]