R
rod
I am using vb to copy slides from one presentation to another and have
noticed that the slides copy exactly but the slide notes lose their
formatting (bulleted lists, indents, etc)
Any ideas on how to get around this?
here is some basic sample code i am using
thanks in advance..
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(1)
oSlide.Copy
objDestination.Slides.Paste
noticed that the slides copy exactly but the slide notes lose their
formatting (bulleted lists, indents, etc)
Any ideas on how to get around this?
here is some basic sample code i am using
thanks in advance..
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(1)
oSlide.Copy
objDestination.Slides.Paste