Repository.Crew.GetCrew: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 19: Line 19:
  {{APIComment|'Get the list of crews in the connected repository.}}
  {{APIComment|'Get the list of crews in the connected repository.}}
   Dim ListOfCrews() As [[cCrew Class|cCrew]]
   Dim ListOfCrews() As [[cCrew Class|cCrew]]
   ListOfCrews = MyRepository.GetAllCrews()
   ListOfCrews = MyRepository.Crew.GetAllCrews()
    
    
  {{APIComment|'Get a Crew.}}
  {{APIComment|'Get a Crew.}}
   Dim GetCrew() as cCrew
   Dim GetCrew() as cCrew
   GetCrew= MyRepository.GetCrew(1)
   GetCrew= MyRepository.Crew.GetCrew(1)

Revision as of 16:38, 22 May 2015


Version 10 Only - Returns crew with the provided ID. Returns nothing if the crew doesn't exist.

Syntax

Parameters

Enter the Crew ID to get desired crew.

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
 
 'Get the list of crews in the connected repository. 
 Dim ListOfCrews() As cCrew
 ListOfCrews = MyRepository.Crew.GetAllCrews()
 
 'Get a Crew. 
 Dim GetCrew() as cCrew
 GetCrew= MyRepository.Crew.GetCrew(1)