Help Word 2000

  • Thread starter Thread starter Indred Cold
  • Start date Start date
I

Indred Cold

I want to force Word to always open to the last page accessed of a document
instead of reverting to the first page every time. Any idea how to do that?
 
Press Shift+F5 as soon as the document opens. This will take you to
the point where the last edit was made (not necessarily the last place
where the cursor was placed). To automate this, create a macro in
Normal.dot and make it look like this:

Public Sub AutoOpen()
Application.GoBack
End Sub

If you have Word 2000 or later, you may need a bug fix. See
http://word.mvps.org/FAQs/AppErrors/GoBackFix.htm for that.
 
Back
Top