Bookmarks

F

frank

I am putting together a Newsletter that I want to send electronically. Even
though I could use Publisher, I think most people have WORD.

My question is this: When someone receives my Newsletter and brings it up
on their computer screen to read, if they get interrupted and need to stop
reading, is there a way to create a macro whereby when they click it, it will
automatically save the location of the bookmark depending on what is
displayed on the screen?

I need to make it easy for them to "take up" where they left off without
depending on them to use the standard bookmark proceedure from the drop down
menu.

If this can not be done in WORD, is there any other program that this
feature exists?
 
D

DaveLett

Hi Frank,
I think you can use something like the following:
Dim oRng As Range
Set oRng = Selection.Range
oRng.Collapse Direction:=wdCollapseStart
ActiveDocument.Bookmarks.Add Name:="RestartReading", Range:=oRng

HTH,
Dave
 

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