rwblinn Well-Known Member Licensed User Longtime User Nov 24, 2013 #1 Hi All, is there an AppClose function (similiar AppStart)? The function would be executed when closing the app via system close icon or f.e assigned to a close button can be used to ensure to f.e. store config data or any other routines prior closing.
Hi All, is there an AppClose function (similiar AppStart)? The function would be executed when closing the app via system close icon or f.e assigned to a close button can be used to ensure to f.e. store config data or any other routines prior closing.
agraham Expert Licensed User Longtime User Nov 24, 2013 #2 Form Close and CloseRequest events. Upvote 0
rwblinn Well-Known Member Licensed User Longtime User Nov 24, 2013 #3 agraham said: Form Close and CloseRequest events. Click to expand... Thanks agraham. Have used as an example: B4X: ' Handle form closing via system close (top right X button) Sub MainForm_CloseRequest (EventData As Event) updateConfig End Sub Upvote 0
agraham said: Form Close and CloseRequest events. Click to expand... Thanks agraham. Have used as an example: B4X: ' Handle form closing via system close (top right X button) Sub MainForm_CloseRequest (EventData As Event) updateConfig End Sub