AccessObject.DateCreated Property (Access)
Returns a Date indicating the date and time when the design of the specified object was last modified. Read-only.
Syntax
expression .DateCreated
expression A variable that represents an AccessObject object.
Example
The following example lists all the reports in the current database and when their designs were created and modified.
Dim acobjLoop As AccessObject
For Each acobjLoop In CurrentProject.AllReports
With acobjLoop
Debug.Print .Name & " - Created " & .DateCreated _
& " - Modified " & .DateModified
End With
Next acobjLoop