Repository.Project.GetCurrentProject: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(No difference)

Revision as of 18:04, 20 May 2015


Returns the name and ID of the current project.

Syntax

Usage Example

In this usage example, a project is opened in a Synthesis repository, and the ID of the project is retrieved.

 'Declare a new repository connection object. See Repository. 
 Dim MyRepository As New Repository
 
 'Connect to a Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("C:\Users\Name\Documents\ReliaSoft\Files\repository.rsr9")
 
 'Get a list of the names/IDs of projects in the connected repository. 
 Dim ListOfProjects() As NameIdPair
 ListOfProjects = MyRepository.Project.GetAllProjects()
 
 'Open the first project in the list. 
 MyRepository.Project.SetCurrentProject(ListOfProjects(0).ID)
 
 'Get the ID of the opened project. 
 Dim ID As Integer
 ID = MyRepository.Project.GetCurrentProject()
 
 'Disconnect from the repository. 
 MyRepository.DisconnectFromRepository()