B4J Question detect closing of software

electro179

Active Member
Licensed User
Longtime User
Hello

How to raise an event when the user close the software with the cross

tahnk you
 

stevel05

Expert
Licensed User
Longtime User
Try:

B4X:
Sub MainForm_CloseRequest (EventData As Event)
    Log("Closing")
End Sub
 
Upvote 0
Top