Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 995 Bytes

Access.AccessObject.DateModified.md

File metadata and controls

42 lines (28 loc) · 995 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
AccessObject.DateModified property (Access)
vbaac10.chm12753
vbaac10.chm12753
Access.AccessObject.DateModified
a5392776-febe-de09-103d-2d2683f2d0bf
02/01/2019
medium

AccessObject.DateModified property (Access)

Returns a Date indicating the date and time when the design of the specified object was last modified. Read-only.

Syntax

expression.DateModified

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

[!includeSupport and feedback]