How can I check by VBA if a presentation is changed

  • Thread starter Thread starter PeterS
  • Start date Start date
P

PeterS

Hi,

I need to check from my vba code if the user has changed the
ppt-presentation. How can I do this?
 
ActivePresentation.Saved tells you if the presentation has been saved since
the last time it was saved. I use this all the time, but generally to set
it to True because my VBA has changed something that shouldn't be saved,
and I don't want the users to be asked if they should save when exiting. Is
this what you are looking for?
--David
 
Back
Top