Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 943 Bytes

Project.Project.Activate(method).md

File metadata and controls

47 lines (33 loc) · 943 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.Activate method (Project)
project-server
Project.Project.Activate
965ad204-9f56-591f-91a1-7c42ded480cf
06/08/2017
medium

Project.Activate method (Project)

Activates the project.

Syntax

expression.Activate

expression A variable that represents a Project object.

Example

The following examples activate the next and previous projects, respectively.

Sub ProjectNext() 
    If ActiveProject.Index < Projects.Count Then 
        Projects(ActiveProject.Index + 1).Activate 
    Else 
        Projects(1).Activate 
    End If 
End Sub 
 
Sub ProjectPrevious() 
    If ActiveProject.Index > 1 Then 
        Projects(ActiveProject.Index - 1).Activate 
    Else 
         Projects(Projects.Count).Activate 
    End If 
End Sub

[!includeSupport and feedback]