Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Greetings,

I have been unable to successfully save any Presentation to a memorystream without being prompted to repair the document when opening in Powerpoint 2019. Please refer to the below code snippet to see if you can reproduce your own side.

Thanks


        Using p As Syncfusion.Presentation.IPresentation = Presentation.Create

            Using ms As New System.IO.MemoryStream

                p.Save(ms)

                 ms.Position = 0

                Using fs As New System.IO.FileStream("E:\testiems.pptx", System.IO.FileMode.Create)

                    fs.Write(ms.GetBuffer(), 0, ms.GetBuffer().Length)

                End Using

            End Using

        End Using