Copying sliides between presentations

  • Thread starter Thread starter Iain Hamilton
  • Start date Start date
I

Iain Hamilton

Hi

I have some code that does

for i := 1 to SlideCount do
begin
OldPresentation.Slides.Item(i).Copy;
NewPresentation.Slides.Paste ( NewPresentation.Slides.Count+1 );
end;

- basically just copying all the slides from one presentation to another.
Everything seems to come over except the background colour.

NewPresentation is a blank presentation created using -
Presentations.Add ( msoFalse );

Can anyone help.

Thanks

Iain Hamilton
 
Back
Top