The title pretty much says.
- I need to open all the PowerPoint files recursively in a directory (done).
- I need to copy the Userform and module from an already-open file.
- I need to resave all the PowerPoint files in their original directories as macro-enabled PowerPoint documents.
For bonus points how can I ensure that all the files have the same master slides as the original and that the slides are updated when the master changes.
Here is the code that opens the files. It works.
Sub OpenAllFiles()
Dim colFiles As New Collection
Dim vFile As Variant
RecursiveDir colFiles, "C:\Users\Debra\Dropbox\School\Mathematics\Notes", "*.pptx", True
For Each vFile In colFiles
Presentations.Open (vFile)
Next vFile
End Sub
RecursiveDir? 3) What do you mean bonus points? – brettdj Aug 28 '12 at 5:46RecurseDircode – brettdj Aug 28 '12 at 9:02