Application.WindowNewWindow Method

Project Developer Reference

Creates a new window.

Syntax

expression.WindowNewWindow(Projects, View, AllProjects, ShowDialog)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Projects Optional String The names of one or more projects, separated by the list separator character. The new window contains data from the projects you specify. The default is to create a copy of the active window.
View Optional String The name of an initial view for the new window. The default is equal to the value returned by the DefaultView property.
AllProjects Optional Boolean True if the new window contains data from all open projects. When True, AllProjects overrides Projects. The default value is False.
ShowDialog Optional Boolean True if the New Window dialog box is displayed so that a view or project can be selected. The default value is False.

Return Value
Boolean

Example
The following example creates a new window that combines the data from all open projects.

Visual Basic for Applications
  Sub NewCombineProjectsInNewWindow()
    WindowNewWindow AllProjects:=True
End Sub

See Also