Repository.Crew.GetCrew: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
John Leavitt (talk | contribs) No edit summary  | 
				John Leavitt (talk | contribs) No edit summary  | 
				||
| Line 7: | Line 7: | ||
Parameters  | Parameters  | ||
Enter   | Enter the Crew ID to get desired crew.  | ||
== Usage Example ==  | == Usage Example ==  | ||
Revision as of 20:29, 21 April 2015
 
Version 10 Only - Returns crew with the provided ID. Returns nothing if the crew doesn't exist.
Syntax
- GetCrew(As cCrew)
 
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.GetAllCrews() 'Get a Crew. Dim GetCrew() as cCrew GetCrew= MyRepository.GetCrew(1)
