H
Harold
Private Sub Date_DblClick(Cancel As Integer)
Me![End Date] = Date
End Sub
This code was originally written in Access 2000. I am
developing in Access 2002 and attempting to use the same
code. When installed and run on Windows 2000 server, the
code errors thusly - Cannot find object
If I change Date to Now, it works fine.
I ran accross some knowledge base info that indicates the
date function in 2000 requires the (), but access 2002
actually drops these parentheses. In this case, the
function is NOT treated as a function, but text (ie -
"Date")
Has any one else run into this problem and may be able to
provide some help?
Me![End Date] = Date
End Sub
This code was originally written in Access 2000. I am
developing in Access 2002 and attempting to use the same
code. When installed and run on Windows 2000 server, the
code errors thusly - Cannot find object
If I change Date to Now, it works fine.
I ran accross some knowledge base info that indicates the
date function in 2000 requires the (), but access 2002
actually drops these parentheses. In this case, the
function is NOT treated as a function, but text (ie -
"Date")
Has any one else run into this problem and may be able to
provide some help?