Hi Roderick
Assuming that the cursor is within a text box, then the following will
select the paragraph to which the text box is anchored. You can see the
anchors by doing Tools > Options > View and ticking the "Object anchors"
box.
Sub SelectShapeAnchor()
Dim tb As Shape
Set tb = Selection.ShapeRange(1)
tb.Anchor.Select
Selection.Collapse wdCollapseStart
End Sub

Signature
Hope this helps.
Shauna Kelly. Microsoft MVP.
http://www.shaunakelly.com/word
>I have a textbox into which my procedure has inserted an inlineshape -
> a photo for a CV.
[quoted text clipped - 21 lines]
>
> Roderick
Roderick O'Regan - 01 Mar 2007 10:47 GMT
Thanks Shauna.
It works great.
Much appreciated.
Roderick
>Hi Roderick
>
[quoted text clipped - 13 lines]
>
>End Sub