Repository.Task.UpdateCorrectiveTask: 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|'Set a first available project as current.}} | |||
MyRepository.Project.SetCurrentProject(0) | |||
{{APIComment|'Get the list of corrective tasks from the current project.}} | {{APIComment|'Get the list of corrective tasks from the current project.}} | ||
Dim ListOfCorrectiveTasks() As [[cCorrectiveTask Class|cCorrectiveTask]] | Dim ListOfCorrectiveTasks() As [[cCorrectiveTask Class|cCorrectiveTask]] |
Revision as of 20:41, 22 May 2015
Updates the specified task in the repository. Returns True if successful, otherwise returns False.
Syntax
- UpdateCorrectiveTask( task As cCorrectiveTask )As Boolean Updates the corrective task in the repository.
- UpdateScheduledTask( task As cScheduledTask )As Boolean Updates the scheduled task in the repository.
Parameters
- task: The cCorrectiveTask or cScheduledTask to update.
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 the list of corrective tasks from the current project. Dim ListOfCorrectiveTasks() As cCorrectiveTask ListOfCorrectiveTasks = MyRepository.Task.GetAllCorrectiveTasks() 'After updating the task, update the repository Dim SuccessUpdateCorrectiveTask As Boolean = False SuccessUpdateCorrectiveTask = MyRepository.Task.UpdateCorrectiveTask(ListOfCorrectiveTasks(0))