Setting object properties when record changes

bayman

Registered User.
Local time
Today, 00:54
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?
 
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

Back
Top Bottom