CScheduledTask.GetTeams Method: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 17: | Line 17: | ||
'''VBA''' | '''VBA''' | ||
{{APIComment|'Declare a new Repository object and connect to a | {{APIComment|'Declare a new Repository object and connect to a repository.}} | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr19"}}) | MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr19"}}) |
Revision as of 19:24, 13 March 2019
Member of: SynthesisAPI.cScheduledTask
Returns an array teams required for the task.
Remarks: Designed for VB6/VBA users, but can also be used in .NET. Alternatively, .NET users can use the Teams()
property in the class to get or set the teams.
Syntax
.GetTeams(ByRef arr())
Parameters
arr()
- Required as TeamInfo. An array of the team IDs for the task.
Example
VBA 'Declare a new Repository object and connect to a repository. Dim MyRepository As New Repository MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr19") 'Get a particular task with ID of 2 from repository. Dim aTask As cCorrectiveTask Set aTask = MyRespository.Task.GetScheduledTask(2) 'Create instance of TeamInfo. Dim Teams() As TeamInfo Set Teams = aTask.GetTeams