Form.Close event (Access)
The Close event occurs when a form is closed and removed from the screen.
expression.Close
expression A variable that represents a Form object.
Nothing
To run a macro or event procedure when this event occurs, set the OnClose property to the name of the macro or to [Event Procedure].
The Close event occurs after the Unload event, which is triggered after the form is closed but before it is removed from the screen.
When you close a form, the following events occur in this order:
Unload → Deactivate → Close
When the Close event occurs, you can open another window or request the user's name to make a log entry indicating who used the form or report.
The Unload event can be canceled, but the Close event can't.
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.