How to change a field's data

adj

Registered User.
Local time
Today, 18:36
Joined
May 23, 2000
Messages
14
I am tsting a section on a form tosee if any of the fileds have ben changed using the dirty property. I want to know, is it possible to change a single predefiend field's data when anotehr field has been changed?
Thanks.
Anne
 
You could add a field to the table called something like "ChangeDate". Add this field to the form you are monitoring and set it's Visible property to NO.

Then, in the Form's OnDirty event, use this code:

Me!ChangeDate = Now()

Jamie
 

Users who are viewing this thread

Back
Top Bottom