Event when user advances a form to the next record

S

ScottH---

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?
 
M

Marshall Barton

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
 
Top