View Single Post
 
Old 05-27-2015, 05:39 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

I did say "In theory"!

If you need the last save time / year you can query the Doc Props

Code:
Sub checkSaveDate()
If ActivePresentation.Path = "" Then Exit Sub ' not saved
MsgBox ActivePresentation.BuiltInDocumentProperties("Last Save Time")
MsgBox "The year only was " & Format(ActivePresentation.BuiltInDocumentProperties("Last Save Time"), "YYYY")
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote