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

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
 
B

B

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top