06-04-2023, 10:51 PM
Wow Terry
it is fantastic!
Sorry I do not write the wikipage of _EXIT.
Here a demo that stucks
buuuut I got only value 1 from _EXIT both by click on X of the window both pressing Alt+F4 (in windows 11 OS)
See Later
it is fantastic!
Sorry I do not write the wikipage of _EXIT.
Here a demo that stucks
buuuut I got only value 1 from _EXIT both by click on X of the window both pressing Alt+F4 (in windows 11 OS)
Code: (Select All)
'Disabling the default exit routinue
ExitFlag = _Exit
On Timer(1) GoSub ShutDown
Timer On
Print "Waiting _EXIT function"
While 1: Wend
End
ShutDown:
ExitFlag = _Exit
If ExitFlag Then Print ExitFlag 'System '<------- remming this we must build a manual exiting routine or the program stucks
Return