Re: Move object with text by Francis
Francis
Fri Oct 12 03:55:02 PDT 2007
Wow - that was quick - thank you Helmut, I shall try that after the
weekend - just off for our annual walking weekend with Rotary friends.
Many thanks.
Francis in Cambridge, UK
"Helmut Weber" <HelmutWeber@discussions.microsoft.com> wrote in message
news:063B2948-231D-47C8-A858-D6A341C8FE70@microsoft.com...
> Hi Francis
>
> Sub Test0067()
> Dim oInl As InlineShape
> For Each oInl In ActiveDocument.InlineShapes
> oInl.ConvertToShape
> Next
> End Sub
>
> In case you are using Word 2007, you might need:
>
> Sub Test0067()
> Dim n As Long
> With ActiveDocument
> For n = .InlineShapes.Count To 1 Step -1
> .InlineShapes(n).ConvertToShape
> Next
> End With
> End Sub
>
> --
> Greetings from Bavaria, Germany
> Helmut Weber, MVP WordVBA
> "red.sys" & chr(64) & "t-online.de"
> Word 2002, Windows 2000 (german versions)
>
>
>