Closing a window

Blitz3D Forums/Blitz3D Beginners Area/Closing a window

Farflame(Posted 2005) [#1]
Is there a way for Blitz to know when I've closed a window using the close-window 'X' in the corner? I'm using the debugger and keep accidentally closing the window with the X.


NA(Posted 2005) [#2]
While Not MouseDown(1)
Print "Hello"
Wend
End


Farflame(Posted 2005) [#3]
Errr, what?


Ross C(Posted 2005) [#4]
There is a .dll or userlib for this kind of thing. Maybe a google search of the site might unearth it.


Ross C(Posted 2005) [#5]
Found it:

http://www.blitzbasic.com/codearcs/codearcs.php?code=832


Farflame(Posted 2005) [#6]
Thanks :)