Repository.Task.GetCorrectiveTask: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| Alex Ulanov (talk | contribs) | Alex Ulanov (talk | contribs) | ||
| Line 17: | Line 17: | ||
|    MyRepository.Project.SetCurrentProject(0) |    MyRepository.Project.SetCurrentProject(0) | ||
|   {{APIComment|'Get Corrective Task.}} |   {{APIComment|'Get Corrective Task with the ID of 1.}} | ||
|    Dim GetCorrectiveTask() as cCorrectiveTask |    Dim GetCorrectiveTask() as cCorrectiveTask | ||
|    GetCorrectiveTask= MyRepository.Task.GetCorrectiveTask(1) |    GetCorrectiveTask= MyRepository.Task.GetCorrectiveTask(1) | ||
| </div> | </div> | ||
Revision as of 20:42, 22 May 2015
 
Version 10 Only - Returns corrective task with the provided ID. Returns nothing if the task doesn't exist.
Syntax
- GetCorrectiveTask(AscCorrectiveTask)
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 Corrective Task with the ID of 1. Dim GetCorrectiveTask() as cCorrectiveTask GetCorrectiveTask= MyRepository.Task.GetCorrectiveTask(1)
