Repository.Project.SetCurrentProject: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}
{{Template:Repository.SetCurrentProject.Cmt}} {{Template:BooleanReturn.Cmt}}
{{Template:Repository.SetCurrentProject.Cmt}}  


== Syntax==
== Syntax==
Line 7: Line 7:
Parameters
Parameters
:''ProjectID'': Set the current project to this ID.
:''ProjectID'': Set the current project to this ID.
{{Template:BooleanReturn.Cmt}}


== Usage Example ==
== Usage Example ==
{{Template:RepositoryFull.Ex}}
{{Template:RepositoryFull.Ex}}

Revision as of 17:39, 20 May 2015


Opens (sets as current) a project with the specified ID.

Syntax

  • SetCurrentProject( ProjectID As Integer)As Boolean

Parameters

ProjectID: Set the current project to this ID.

Returns True if successful, otherwise returns False.

Usage Example

In this usage example, the API is used to connect to a repository, retrieve one of the models in it and then calculate the reliability at a specified time, based on that model.

 '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.rsr10")
 
 '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 a list of the names/IDs of models in the current project. 
 Dim ListOfModels() As NameIdPair
 ListOfModels = MyRepository.Model.GetAllModelsInfo()
 
 'Retrieve the first model in the list. 
 Dim AModel As cModel
 AModel = MyRepository.Model.GetModel(ListOfModels(0).ID)
 
 'Calculate the reliability at time = 50 and save the result. See Reliability. 
 Dim Rel As Double
 Rel = AModel.Reliability(50)
 
 'Disconnect from the repository. 
 MyRepository.DisconnectFromRepository()