Way to verifying a record change?

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

Guest

Is there a snippet of code that will allow you to see if the user is moving
to a another record? Either that or execute code upon the user hitting the
navigation buttons at the bottom of the forms...

Thanks,

Zaz
 
The form's Current event runs when you move from record to record, including
when you move to the first record as the form opens. If you are wanting to
catch changes and have the user verify that they want the changes committed
though, use the form's BeforeUpdate event.
 
Just what I needed...

Thanks!

Wayne Morgan said:
The form's Current event runs when you move from record to record, including
when you move to the first record as the form opens. If you are wanting to
catch changes and have the user verify that they want the changes committed
though, use the form's BeforeUpdate 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