>I want to put my cursor on any particular page of choice in a Word
> document and then find a shape of a certain type.
[quoted text clipped - 6 lines]
>
> Roderick
Dim oShape as Shape
For each oShape in ActiveDocument.Bookmarks("\Page").Range.ShapeRange
' work on the shape here
Next oShape

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Roderick O'Regan - 20 Jul 2007 00:34 GMT
Thanks Jonathan.
That did the trick!
>>I want to put my cursor on any particular page of choice in a Word
>> document and then find a shape of a certain type.
[quoted text clipped - 11 lines]
> ' work on the shape here
>Next oShape