Repository.Crew.GetCrew: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) |
Alex Ulanov (talk | contribs) |
||
Line 17: | Line 17: | ||
Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | ||
{{APIComment|' | {{APIComment|'Set a first available project as current.}} | ||
MyRepository.Project.SetCurrentProject(0) | |||
{{APIComment|'Get a Crew with the ID of 1.}} | |||
{{APIComment|'Get a Crew.}} | |||
Dim GetCrew() as cCrew | Dim GetCrew() as cCrew | ||
GetCrew= MyRepository.Crew.GetCrew(1) | GetCrew= MyRepository.Crew.GetCrew(1) |
Revision as of 20:50, 22 May 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") 'Set a first available project as current. MyRepository.Project.SetCurrentProject(0) 'Get a Crew with the ID of 1. Dim GetCrew() as cCrew GetCrew= MyRepository.Crew.GetCrew(1)