I'm writing a PPT add-in that makes a PNG of a slide and uploads it somewhere. I want the slide creator to be able to add dates/times in text boxes (using Insert > Date & Time), and have those dates/times reflect the time the snapshot is taken.
If one checks "Update Automatically" when adding them, the timestamps only update when the slide is opened. Is there a way to find all the date/time tags/fields in all shapes and force them to update immediately before I take the snapshot?
The only other way I've found to possibly do what I want is to have "named" shapes on the slide that are empty and populate a date into them programmatically...but this introduces extra complexity for the person building the slide and is generally messier. But I'm open to other possibilities if any.
Thanks!
-EDIT-
Ok, I just realized that when I create the PNG with SaveGraphic the timestamps in the PNG are updated! So that probably is all I absolutely need. Interestingly though, the datestamps in what the user is looking at on-screen don't get updated, which is potentially confusing to the user. So the question still stands...seems like this should be doable.