Table of Contents

OnStop (Statement)

Format

onstop subroutine_name()

Description

Causes the subroutine to be executed when the stop button is pressed. If the subroutine is allowed to return, the program will continue running as if not stopped.

Example

onstop handleStop()

subroutine handleStop()
	x = confirm("stop program")
	if x then end
end subroutine

for t = 1 to 10
print t
pause 1
next t

print 'done'

See Also

2016/01/01 22:42

History

2.0.99.1New To Version