Way to verifying a record change?

Z

Zaz

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
 
W

Wayne Morgan

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.
 
Z

Zaz

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