ID : 582
ContinueAll
Function
To perform continue start.
Syntax
ContinueAll
Description
Continue start of a task in continue stop status is performed.
This can be performed for a supervisory task or control panel program only.
Related Terms
Kill, Run, Suspend, SuspendAll, Halt, Hold, Task Status, Continue Function
Attention
An error occurs if this is performed when there is no task in continue stop status.
Example
'!TITLE "Execution of Continue Start"
' Continue suspended program
Sub Sample_ContinueAll
Dim aaa As Integer
' Start up another program in parallel
Run ContinueAll_Sample2
For aaa = 0 To 30
' Display 0-30 count-up as processing of invoker
PrintDbg "Call Sample_ContinueAll " & aaa
Next
' Suspend all programs currently active
SuspendAll
' Program continue
ContinueAll
End Sub
ID : 582