Continue Command

This command resumes thread execution after the thread pauses due to an error, a breakpoint, or a Break instruction.

Continue thread_name [-bex] [-noerror]

Prerequisites

The specified thread must ha ve been activated by a Start command and subsequently paused by an error, a breakpoint, or by a Break command.

Parameters

thread_name

The name of the thread to be continued.

-bex

An optional switch that specifies that the thread should pause immediately if an exception occurs, rather then passing control to any Try / Catch exception handler. Continuing after the pause then passes control to the exception handler.

-noerror

An optional switch that specifies that current step should be skipped if it generated the error that stopped thread execution. Otherwise, the step in error is retried and may generate the error again.

Remarks

This command is used to recover from an unexpected error condition, or when debugging a procedure. It allows a thread to resume execution.

Examples

Start My_project
Thread My_project: Running
Thread My_project: Error
Continue My_project -noerror
Thread My_project: Running

See Also

Console Commands | Break Command | Start Command | Step Command