new data in continuous form

D

Daniel

Good morning,

Which event will be triggered whenever a user enters new data in a
continuous form or when they edit/modify an existing entry?

Thank you,

Daniel
 
A

Allen Browne

The BeforeUpdate event of the *form* fires before the entry is saved, so use
that to validate the entry.

The form's AfterUpdate event fires after a record has been changed, so use
that if you need to respond to a change.

The form's AfterInsert event fires after a new record has been added, so use
that if you need to respond to a new entry.
 
K

Klatuu

My two favorite events are the BeforeNap and AfterNap events. They differ
from the typical Before and After events in that the BeforeNap event cannot
be canceled - not even with error handling. The AfterNap event can be
canceled and can be made recursive with the use of the Time event.
 
Top