Returns or sets a Boolean that determines if the New Page or Web task pane will be displayed when Microsoft FrontPage is started. Read/write.
expression.ShowStartupDialog
expression Required. An expression that returns an Application object.
The ShowStartup property is global, meaning that any changes will not take affect until FrontPage is restarted.
The following example sets the ShowStartupDialog property to True. The next time FrontPage is started, the New Page or Web task pane will appear.
Sub TaskPaneStartup()
'Modifes the Startup task pane property
Dim objApp As FrontPage.Application
Set objApp = FrontPage.Application
With objApp
'Set to True, the task pane will appear on startup
.ShowStartupDialog = True
End With
End Sub