This script was working well until we all upgraded to Powerpoint 2010. The purpose of this program is to open and combine, join or merge multiple Powerpoint presentations contained in a folder into one large Powerpoint presentation. I did not write this program, I found it on the internet a long time ago. All the presentation slides are merged when the script is run perfectly. The problem seems to be when the end of the last file is reached then the program faults. I am not sure how to fix this issue and any help is greatly appreciated. Thank you in advance. Here is the code and error below:
Const PPTMERGE_FILE = "Merged.ppt"
Const PPTMERGE_FOLDER = ".\PPTmerge"
Dim Application
Set Application=CreateObject("PowerPoint.Application")
Application.Visible = True
Dim first
first = True
Set fs=CreateObject("Scripting.FileSystemObject")
Dim folder
Set folder = fs.GetFolder(PPTMERGE_FOLDER)
Dim out
Dim ff
For Each ff in folder.Files
f = PPTMERGE_FOLDER + "\" + ff.Name
If first Then
Dim p
Set out = Application.Presentations.Open(ff)
out.SaveAs PPTMERGE_FOLDER + "\..\" + PPTMERGE_FILE
first = False
Else
out.Slides.InsertFromFile ff, out.Slides.Count
End If
Next
If Not first Then
out.Save
out.SlideShowSettings.Run
End If
Set folder = Nothing
Set out = Nothing
Set folder = Nothing
Set Application = Nothing
Here is the error that I receive:
Windows Script Host
Line: 21
Char: 1
Error: Slides.InsertFromFile : Failed.
Code: 80004005
Source: Microsoft Powerpoint 2010
Const PPTMERGE_FILE = "Merged.ppt"
Const PPTMERGE_FOLDER = ".\PPTmerge"
Dim Application
Set Application=CreateObject("PowerPoint.Application")
Application.Visible = True
Dim first
first = True
Set fs=CreateObject("Scripting.FileSystemObject")
Dim folder
Set folder = fs.GetFolder(PPTMERGE_FOLDER)
Dim out
Dim ff
For Each ff in folder.Files
f = PPTMERGE_FOLDER + "\" + ff.Name
If first Then
Dim p
Set out = Application.Presentations.Open(ff)
out.SaveAs PPTMERGE_FOLDER + "\..\" + PPTMERGE_FILE
first = False
Else
out.Slides.InsertFromFile ff, out.Slides.Count
End If
Next
If Not first Then
out.Save
out.SlideShowSettings.Run
End If
Set folder = Nothing
Set out = Nothing
Set folder = Nothing
Set Application = Nothing
Here is the error that I receive:
Windows Script Host
Line: 21
Char: 1
Error: Slides.InsertFromFile : Failed.
Code: 80004005
Source: Microsoft Powerpoint 2010