Setting object properties when record changes (1 Viewer)

bayman

Registered User.
Local time
Today, 14:13
Joined
May 25, 2001
Messages
96
When I move to a new record within a form, I want an opportunity to set various field properties, but I can't find an appropriate event at which point to do this. Any suggestions?
 

Jack Cowley

Registered User.
Local time
Today, 14:13
Joined
Aug 7, 2000
Messages
2,639
In the On Current event of the form use code like this:

If Me.NewRecord Then
Set properties here
End if
 

Users who are viewing this thread

Top Bottom