R
rod
I am using code to copy slides from one slide kit to another, this
works great but I have noticed that the formatting (bulleted text,
indents) on the notes section is lost. Any ideas?
Here is the code I am using to do the copy.....
Set objPPT = CreateObject("PowerPoint.Application")
Set objDestination = objPPT.Presentations.Add(0)
Set objSource = objPPT.Presentations.Open(strFileName, -1, -1, 0)
Set oSlide = objSource.Slides.Item(slide_number)
oSlide.Copy
With objDestination.Slides.Paste
.Design = objSlide.Design
.ColorScheme = objSlide.ColorScheme
End With
thanks
works great but I have noticed that the formatting (bulleted text,
indents) on the notes section is lost. Any ideas?
Here is the code I am using to do the copy.....
Set objPPT = CreateObject("PowerPoint.Application")
Set objDestination = objPPT.Presentations.Add(0)
Set objSource = objPPT.Presentations.Open(strFileName, -1, -1, 0)
Set oSlide = objSource.Slides.Item(slide_number)
oSlide.Copy
With objDestination.Slides.Paste
.Design = objSlide.Design
.ColorScheme = objSlide.ColorScheme
End With
thanks