Getting to a bookmark in a text box

O

Oz Springs

I have created a bookmark in a text box but I can¹t get to it unless I am in
the text box - which makes it pretty useless.

Can anyone help me with a macro to get to the text box¹s bookmark?

Thanks for any help




Oz
 
R

Rob

Oz said:
I have created a bookmark in a text box but I can¹t get to it unless I am in
the text box - which makes it pretty useless.

Can anyone help me with a macro to get to the text box¹s bookmark?

Thanks for any help




Oz

Selection.ShapeRange.Select
'Select Text Box #1
ActiveDocument.Shapes("Text Box 1").Select
'After selecting Text Box #1, go to Bookmark "bkm_name"
Selection.GoTo What:=wdGoToBookmark, Name:="bkm_name"

Record a macro to find out what the actual number is of the selected
Text Box.

Hope this helps,

Rob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top