Open DOC at specific bookmark

G

Guest

Is there a way to open a WORD document (version 2003) that consists of
several pages with several bookmarks at aspecific bookmark? That point will
change occasionally, but I'd guess the syntax would stay the same.

I have a shortcut to the file on my desktop, because the file is used
frequently - several times a day - and the place to which I have to get
changes from time to time. Opening to the specific spot would make things
much easier.

Thanks much.

Mike
 
G

Graham Mayor

SHIFT+F5 will go to the last place you edited.
CTRL+SHIFT+F5 will allow you to select a bookmark location.
The following macro will go to the named bookmark - here 'BookmarkName'

Sub MyPlace()
Selection.GoTo What:=wdGoToBookmark, Name:="BookmarkName"
End Sub


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Guest

Thanks very much! I thought there would be a way to completely automate it.
(No, I'm not really that lazy - just that curious!) But the SHIFT-F5
combinatioin does the trick quite nicely.

Mike
 

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