Event when user advances a form to the next record

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

Guest

I need to update formatting in a form whenever a user moves to a new record.
Can someone tell me the event that fires when a user moves to a new record?
 
ScottH--- said:
I need to update formatting in a form whenever a user moves to a new record.
Can someone tell me the event that fires when a user moves to a new record?


The form's Current event fires whenever you move from one
record to another. You can then check if you're in a new
record:

If Me.NewRecord Then
' set properties
End If
 
Back
Top