Hi,
We are trying to get all the slides from multiple presentations into a single presentation.
In almost all cases, the call to .Write simply hangs.
We are using Aspose.Slides 4.0.0.0
Below is simplified code that causes the problem, and attached are the files used for the test.
I would appreciate any help with this.
===== begin code =====
Dim DestinationPresentation As New Presentation()
Dim SourcePresentation As Presentation
SourcePresentation = New Presentation("C:\Slide.ppt")
For Each currentSlide As Slide In SourcePresentation.Slides
Dim NewSlide As Aspose.Slides.Slide
NewSlide = DestinationPresentation.CloneSlide(currentSlide, DestinationPresentation.Slides.Count - 1)
Next
SourcePresentation = New Presentation("C:\Slides.ppt")
For Each currentSlide As Slide In SourcePresentation.Slides
Dim NewSlide As Aspose.Slides.Slide
NewSlide = DestinationPresentation.CloneSlide(currentSlide, DestinationPresentation.Slides.Count - 1)
Next
DestinationPresentation.Write("C:\DEST.ppt")
===== end code =====