Difference between revisions of "MC-Basic:CONTINUETASK"
(added "line" option) |
(added example) |
||
Line 6: | Line 6: | ||
ContinueTask <''task''> <br> | ContinueTask <''task''> <br> | ||
From 0.4.14.11 and 0.4.15.3 <br> | From 0.4.14.11 and 0.4.15.3 <br> | ||
− | ContinueTask <''task''> <''task''> | + | ContinueTask <''task''> <''task''> programline=<''line''> <br> |
|AVAILABILITY= | |AVAILABILITY= | ||
All versions 3.0 | All versions 3.0 | ||
Line 22: | Line 22: | ||
|RANGE= | |RANGE= | ||
<''task''>: Name of a task that is loaded in memory <br> | <''task''>: Name of a task that is loaded in memory <br> | ||
− | <''line''>: Execution will be resumed from " | + | <''line''>: Execution will be resumed from "programline". Can be used to jump over or re-run a block of code. |
|UNITS= | |UNITS= | ||
Line 39: | Line 39: | ||
|EXAMPLE= | |EXAMPLE= | ||
− | ContinueTask Task1.prg | + | ContinueTask Task1.prg<br> |
+ | From 0.4.14.11 and 0.4.15.3 <br> | ||
+ | ContinueTask Task1.prg programline = 10<br> | ||
|SEE ALSO= | |SEE ALSO= |
Revision as of 11:12, 24 February 2016
This command continues an idle task from the point at which it was stopped (idled), or continues task execution after a break point is reached.
If a run time error occurs, CONTINUETASK retries the line that caused the error. The error must be corrected before the task continues.
ContinueTask command wakes up the task from Sleep
Short form
CTas
Syntax
ContinueTask <task>
From 0.4.14.11 and 0.4.15.3
ContinueTask <task> <task> programline=<line>
Availability
All versions 3.0
Type
<task>: File specification
Range
<task>: Name of a task that is loaded in memory
<line>: Execution will be resumed from "programline". Can be used to jump over or re-run a block of code.
Scope
Task or Terminal
Limitations
- Write only.
- The task must be loaded in memory.
Option "line" cannot be used to jump in/out from subrotines, functions, events,OnEror, On SystemError or try-catch blocks.
Examples
ContinueTask Task1.prg
From 0.4.14.11 and 0.4.15.3
ContinueTask Task1.prg programline = 10