Repository.Crew.GetCrew

From ReliaWiki
Revision as of 00:02, 27 March 2015 by John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetCrew.Cmt}} ==Syntax== * GetCrew( crew {{APIPrefix|ByVal}} ID {{APIPrefix|As Integer}}) {{APIPrefix|As}…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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

Syntax

  • GetCrew( crew ByVal ID As Integer) As cCrew

Parameters

ID: The ID to get.

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 Boolean = False
 GetCrew= MyRepository.GetCrew(1)