Select Page

Bugs with solutions

Have you discovered a bug in PowerPoint? Perhaps while designing slides or programming using VBA?

Let us know and we’ll add it here and discuss it with PowerPoint MVPs to see if we can find a workaround.

And maybe even have Microsoft take a look at it!

PowerPoint User Interface

Report something using the form at the end of this page!

PowerPoint VBA Programming

Pasting text into an existing shape

This should work and it did prior to PowerPoint 2007:

Application.ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange. _
InsertAfter.Paste

But since 2007, it generates the error -2147024809 (80070057) “The specified parameter has an invalid value.”

Workaround:

Application.ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange. _
InsertAfter(" ").Paste

credit


 

Report Something

Add a comment below and we’ll look into it with a view to adding it to the list above.