×
Menu
Index

BREAK Subroutine

 
Usage:
n = BREAK(n)
 
Description:
Enable (n=1) or disable (n=0) the ability to break out of the running of the script by use of the CTRL-C or CTRL- BREAK key on the keyboard. The return value is the break value prior to setting the new value.
 
Example:
sub main()
   // Disable CTRL-C and CTRL-Break
   BREAK(0)
end sub