Simpler and faster:
Code:
Sub RemoveAllObjectsFromFile()
Application.ScreenUpdating = False
With ActiveDocument
While .Shapes.Count > 0: .Shapes(1).Delete: Wend
While .InlineShapes.Count > 0: .InlineShapes(1).Delete: Wend
End With
Application.ScreenUpdating = True
End Sub