Repository.Project.SetCurrentProject

From ReliaWiki
Revision as of 17:48, 20 July 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10.Repository


Connects to a project that you specify and sets it as the current (active) project. Returns a Boolean value; when true, indicates a successful connection to the project.

This is similar to opening the first project shown in the project list of a Synthesis application.

Syntax

.Project.SetCurrentProject(ProjectID)

Parameters

ProjectID

Integer. The ID number of the project. (Required)


Example

VBA|VB.NET

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  ... 


 'Set the first available project in the repository as the current project. 
  MyRepository.Project.SetCurrentProject(1)