Concatenating multiple ppt files into a single file....

  • Thread starter Thread starter Scott Reily
  • Start date Start date
S

Scott Reily

I would like to concatenate multiple powerpoint files
into a single powerpoint file. I'm using Powerpoint 2002.

I believe in Powerpoint 97 you could do execute
from the "Start->run" in windows
powerpoint -i file1.ppt file2.ppt file3.ppt -o output.ppt

But this does not work for 2002. Anybody have suggestions
on how this can be done?

Scott
 
You might want to look at having the server use VB6 to build a customized
show by controlling PowerPoint.

UserShow = BlankPresentation
For x = 1 To 100
If UserPick(x)=True then UserShow = UserShow + Slide(x)
Next x
...type of thing

Then download the temporary customized show to the user before deleting.

Just a passing thought,
B
 
Back
Top