Template:Repository.Ex: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Undo revision 54536 by Chris Kahn (Talk))
No edit summary
Line 7: Line 7:
  {{APIComment|'Get a list of the names/IDs of projects in the connected repository.}}
  {{APIComment|'Get a list of the names/IDs of projects in the connected repository.}}
   Dim ListOfProjects() As NameIdPair
   Dim ListOfProjects() As NameIdPair
   ListOfProjects = MyRepository.GetAllProjects  
   ListOfProjects = MyRepository.GetAllProjects()
    
    
  {{APIComment|'Open the first project in the list.}}
  {{APIComment|'Open the first project in the list.}}
Line 25: Line 25:
    
    
  {{APIComment|'Disconnect from the repository.}}
  {{APIComment|'Disconnect from the repository.}}
   MyRepository.DisconnectFromRepository
   MyRepository.DisconnectFromRepository()

Revision as of 21:46, 27 May 2014

 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.GetAllProjects()
 
 'Open the first project in the list. 
 MyRepository.SetCurrentProject(ListOfProjects(0).ID)
 
 'Get a list of the names/IDs of models in the current project. 
 Dim ListOfModels() As NameIdPair
 ListOfModels = MyRepository.GetAllModelsInfo()
 
 'Retrieve the first model in the list. 
 Dim AModel as cModel
 AModel = MyRepository.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()