Is it possible to get the SaveDate of the active document using VBA? I'm looking for the same value that would appear in a Word field that displays the SaveDate.
I want the date/time, but I don't want to use the field.
Thanks,
Richard Barrett
Is it possible to get the SaveDate of the active document using VBA? I'm looking for the same value that would appear in a Word field that displays the SaveDate.
I want the date/time, but I don't want to use the field.
Thanks,
Richard Barrett

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Word exposes a number of document properties to VBA. You could try those: BuiltInDocumentProperties Property.
I think the specific one you want is: wdPropertyTimeLastSaved
Last edited by jscher2000; 2011-09-13 at 20:21. Reason: More Info
Thank you.