bayman
05-25-2001, 09:27 PM
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?
|
View Full Version : Setting object properties when record changes bayman 05-25-2001, 09:27 PM 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 05-26-2001, 06:45 AM In the On Current event of the form use code like this: If Me.NewRecord Then Set properties here End if |