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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top