Extracting file information

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In VBA for Powerpoint, how do I capture the "Date Picture Taken" that I see
in Windows Explorer?

If this is not the proper place to post this question, please point me to
the right place.

Thanks
 
Hi,

As a curiosity, vba code to find document properties is:

Sub doco_properties()
For Each p In Application.ActivePresentation _
.BuiltInDocumentProperties
bidpList = bidpList & p.Name & Chr$(13)
Next
MsgBox bidpList
End Sub


--

Regards,

Glen Millar
Microsoft PPT MVP

Tutorials and PowerPoint animations at
www.pptworkbench.com

glen at pptworkbench dot com

Please tell us your PowerPoint / Windows version,
whether you are using vba, or
anything else relevant
 
George Berotti said:
In VBA for Powerpoint, how do I capture the "Date Picture Taken" that I see
in Windows Explorer?

If this is not the proper place to post this question, please point me to
the right place.

It's a more general VBA/VB question, but we're not fussy. You wanna do it from
within PPT, that's close enough.

See if something here helps:

http://www.thescripts.com/forum/thread13380.html
 
Back
Top