Home >Common Problem >What are the Access form events?
What are the Access form events?
Access form events include Open, Load, Resize, Activate, Enter to enter the control, GotFocus to gain control focus, Unload, Deactivate, Close, Exit, etc. .
Recommended video tutorial: "PHP"
Access form event triggering sequence
Open When opening a form, the sequence of events is as follows:
Open (open) → Load (load) → Resize (resize) → Activate (activate) → Current (become current) → Enter (enter (control)) → GotFocus (get focus (control))
When closing the form, the sequence of events is as follows:
Exit (exit (control)) → LostFocus (lost focus (control)) → Unload ( Unload) → Deactivate → Close
If the data in the control is changed, the sequence of events is as follows:
BeforeUpdate event of the control and form and AfterUpdate (after update) events will occur before the Exit event occurs.
Recommended tutorial: "PHP Tutorial"
The above is the detailed content of What are the Access form events?. For more information, please follow other related articles on the PHP Chinese website!