afterupdate

T

tony wong

after running the following code, the form is locked in the record. I
cannot move up or down to the next record unless i press "ESC".

what's wrong?


************************
Private Sub Form_AfterUpdate()

Me.Last_response = Date

End Sub
 
W

Wayne Morgan

The form's AfterUpdate will fire after the changes to the record are saved.
Are you wanting to do this in the form's BeforeUpdate so that you can save
this value when the record is saved?
 

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

Top