title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Application.WindowNewWindow method (Project) |
vbapj.chm701 |
|
project-server |
|
fe0c2bcb-7bee-3bec-9c47-3015938ae75d |
06/08/2017 |
medium |
Creates a window.
expression. WindowNewWindow
( _Projects_
, _View_
, _AllProjects_
, _ShowDialog_
)
expression A variable that represents an Application object.
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. |
Boolean
The following example creates a window that combines the data from all open projects.
Sub NewCombineProjectsInNewWindow()
WindowNewWindow AllProjects:=True
End Sub
[!includeSupport and feedback]