Problem with saving

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello -

I have a form where two textboxes are automatically filled in (one with the
current time and one with the user system name). When going to a new record,
these are filled in. When a user exits the application, because of the fact
that these textboxes are filled in, the record is saved. What is the best
way to NOT save it before exiting?

Any help will be appreciated!
 
If you only want it to enter the data when adding a new record (added
timestamp), do so in the "before insert" event.

If you want it to change each time the record is modified (change
timestamp), then use the "before update" event.
 
Thanks, Rick!
--
Sandy


Rick B said:
If you only want it to enter the data when adding a new record (added
timestamp), do so in the "before insert" event.

If you want it to change each time the record is modified (change
timestamp), then use the "before update" event.
 
Back
Top