K
Kan D.
In Access 2003, when I programmatically refer to an objects "LastUpdated"
property, it returns the same value for "DateCreated".
THIS IS INCORRECT
And when I try this...
====
dim accObj as AccessObject
dim myDate as string
for each accObj in CurrentProject.AllForms
mydate = accObj.DateModified
next accObj
====
.... It returns the date I'm looking for.... The MODIFIED date.
BUT What is the MODIFIED date for Tables and Queries? There's no such thing
as CurrentProject.AllTables, or CurrentProject.AllQueries
Please Help...
Thank you
property, it returns the same value for "DateCreated".
THIS IS INCORRECT
And when I try this...
====
dim accObj as AccessObject
dim myDate as string
for each accObj in CurrentProject.AllForms
mydate = accObj.DateModified
next accObj
====
.... It returns the date I'm looking for.... The MODIFIED date.
BUT What is the MODIFIED date for Tables and Queries? There's no such thing
as CurrentProject.AllTables, or CurrentProject.AllQueries
Please Help...
Thank you