Event when record saved ?

  • Thread starter Thread starter David
  • Start date Start date
D

David

I need to fill a column in every record saved with the
value from a function. Is there any event that is
triggered whenever a record is saved? My form has no
specific button that saves a record so I cannot attach it
to that. I can't use the default value property because
that only allows builtin functions.
 
Hi,
The form itself has a BeforeUpdate and AfterUpdate event.
Records are saved as soon as you navigate to a different record
or close the form.
Does that help?
 
Back
Top