I
insomniux
Hi,
Here some code (in BeforeUpdate event in a form):
Dim MyField as Field
Set MyField = Me.TestField 'This is the name of a field on my form
If MyField.OldValue > 100 Then ....
MsAccess (2000) complains that the property .OldValue cannot be found
However when I use the code
If Me.TestField.OldValue > 100 Then ....
There is no complaining.
Is this a bug? How can it be solved?
Thanks
Mike
Here some code (in BeforeUpdate event in a form):
Dim MyField as Field
Set MyField = Me.TestField 'This is the name of a field on my form
If MyField.OldValue > 100 Then ....
MsAccess (2000) complains that the property .OldValue cannot be found
However when I use the code
If Me.TestField.OldValue > 100 Then ....
There is no complaining.
Is this a bug? How can it be solved?
Thanks
Mike