ID : 143
ContinueRun
Function
This is no longer available in RC8 series. To perform continue start.
Syntax
ContinueRun
Description
Resume the all tasks in continue stopping status from the step where they were stopped.
Related Terms
Attention
-
Example
'!TITLE "Execution of Continue Start"
' Continue suspended program
Sub Sample_ContinueRun
Dim aaa As Integer
' Start up another program in parallel
Run ContinueRun_Sample2
For aaa = 0 To 30
' Display 0-30 count-up as processing of invoker
PrintDbg "Call Sample_ContinueRun " & aaa
Next
' Suspend all programs currently active
SuspendAll
' Program continue
ContinueRun
End Sub
ID : 143