View Single Post
 
Old 12-13-2011, 05:07 AM
AlmostFriday AlmostFriday is offline Windows XP Office 2007
Novice
 
Join Date: Dec 2011
Posts: 8
AlmostFriday is on a distinguished road
Default

Thanks again Macropod

But...still deletes the pictures...

The code I am using is as follows:
Code:
Dim iShp As Word.Shape
    For Each iShp In ActiveDocument.Shapes
        With iShp
         If .Type <> msoLinkedPicture And .Type <> msoPicture Then .Delete
        End With
    Next
    For i = ActiveDocument.Shapes.Count To 1 Step -1
    ActiveDocument.Shapes(i).Delete
    Next i
I thought that this would be fairly straight forward, but, I'm starting to think its an impossible one...
Reply With Quote