Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 1.36 KB

Project.Application.OpenServerPage.md

File metadata and controls

63 lines (36 loc) · 1.36 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.OpenServerPage method (Project)
vbapj.chm636
vbapj.chm636
project-server
Project.Application.OpenServerPage
6b7e18fd-2ae1-47a0-45fb-58d6b6e27074
06/08/2017
medium

Application.OpenServerPage method (Project)

Opens the specified page from Project Web App.

Syntax

expression. OpenServerPage( _Page_ )

expression An expression that returns an Application object.

Parameters

Name Required/Optional Data type Description
Page Optional PjServerPage Specifies the page to open from Project Web App. Can be one of the PjServerPage constants. The default is pjServerPageApprovals.

Return value

Boolean

Remarks

Available in Project Professional only. Project must be connected to a Project Web App instance.

Example

The following example opens the Issues page in the SharePoint workspace for the active project, and then opens the Project Center page in

Project Web App

. Internet Explorer shows the pages in separate windows.

Sub OpenPages() 
    OpenServerPage Page:=pjServerPageIssues 
    OpenServerPage pjServerPageProjectCenter 
End Sub

[!includeSupport and feedback]