Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Close application when the main window x is clicked on
Message
From
23/08/2022 18:36:44
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01684781
Message ID:
01684856
Views:
83
>Hi Dennis,
>
>I did away with the X in the upper right corner by settting _screen.ControlBox = .F.
>The _screen, as far as I know, does not have a QueryUnload method. But I will double check.
>Thank you.
>

Hi Dmitry, instead of calling CLEAR EVENTS directly from the ON SHUTDOWN command, you could call a procedure like this:
ON SHUTDOWN DO OnShutdown
READ EVENTS
*
*
PROCEDURE OnShutdown
IF MESSAGEBOX('Dou you want to exit?', 4+ 32, 'Trying to exit') = 7
   RETURN .F.
ENDIF
CLEAR EVENTS
ENDPROC
*
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform