afterupdate

  • Thread starter Thread starter tony wong
  • Start date Start date
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
 
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?
 
Back
Top