Application.WindowNewWindow method (Project)
Creates a 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 window that combines the data from all open projects.
Sub NewCombineProjectsInNewWindow()
WindowNewWindow AllProjects:=True
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.