MC-Basic:CONTINUETASK

From SoftMC-Wiki
Revision as of 10:48, 24 February 2016 by Rasty (talk | contribs) (added "line" option)
Jump to: navigation, search

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> line=<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 "line". 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

See Also