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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.