MC-Basic:CONTINUETASK

From SoftMC-Wiki
Jump to: navigation, search
Language: English  • 中文(简体)‎

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

See Also