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.
 
Back
Top