User Tools

Site Tools


en:onstop

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:onstop [2020/09/18 18:44] (current)
admin created
Line 1: Line 1:
 +===== OnStop (Statement) =====
 +
 +==== Format ====
 +**onstop** [[labelprogramsyntax|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 ====
 +
 +<code>
 +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'
 +</code>
 +
 +==== See Also ====
 +{{page>en:start#Error Handling&noheader}}
 +
 +==== History ==== 
 +|2.0.99.1|New To Version|
 +
  
en/onstop.txt · Last modified: 2020/09/18 18:44 by admin