.UTIL MARK SET
This subroutine marks the current process with a name so you can return to it later.
Usage:
PASS <mark name> FIELD SHARE? N
GOSUB --- .UTIL MARK SET
* Check for errors
IF --- .UTIL MARK SET NE
Description:
This subroutine marks the current process with a name so you can return to it later. The <mark name> parameter is required, if it is missing, the subroutine will CANCEL.
<mark name> is any label you want to put on the current process (Required).
You may mark more than one process with the same name, when you use
.UTIL MARK REWIND it will return to the first process with the matching name. For example, if we have MENU A, from which the user ran INPUT A, and in that INPUT they ran INPUT B, and this subroutine was used to mark MENU A and INPUT A with the same name, then calling
.UTIL MARK REWIND while in INPUT B would return to INPUT A.
Comments:
Read what other users have said about this page or add your own comments.
--
JeanNeron - 2013-05-28