Home>Article> What are the Access form events?

What are the Access form events?

Guanhui
Guanhui Original
2020-06-19 14:19:23 7865browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn