View Single Post
 
Old 12-11-2015, 01:12 PM
macropod's Avatar
macropod macropod is online now Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,478
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

As I've already indicated, the code I provided works with inlineshapes only, not with floating shapes. The code snippet you posted may not convert all shapes to inlineshapes. Try:
Code:
With ActiveDocument
  While .Shapes.Count > 0
    .Shapes(1).ConvertToInlineShape
  Wend
End With
Even this code won't convert shapes in the header/footer, for example, but neither does the macro I posted previously process anything there.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote