0
votes
2answers
82 views

Find the type of a shape

I want to show all the shape types that i have in a powerpoint presentation. I tried with those codes: Private Sub CommandButton1_Click() Dim it As String Dim i As Integer Dim Ctr As Integer ...
0
votes
2answers
479 views

PowerPoint 2010 Macro only works under Windows 7, not Windows XP, (Copy, Paste Shapes error/bug)

I migrated a VBA macro from PowerPoint 2007 to 2010 and after some debugging and testing I found out that copying shapes from one presentation to another only works under Windows 7 and not under ...
3
votes
1answer
760 views

In PowerPoint VBA, how to nudge all the present shapes in the window (not only one)?

As far as I understand, this code "grabs" only the first shape in the active window and nudges it: Set oShape = oSlide.Shapes(1) oShape.Left = oShape.Left + 5 How can I "grab" all the ...