getting back to where I left off

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to know how to open Word 2003 so it automatically opens the document I was working in when I closed down the session before and also at the exact place in the text where I was when I closed the program. I am working with long text-documents and am new to Word. For twenty years I have been working in WordPerfect where this was possible with one click on the Yes-button to the question "Do you wish to save working area?" (Not sure about the English phrasing though, I am Swedish)
 
Shift+F5 will take you to the last edit
or use an auto macro that runs when you open a document

Sub AutoOpen()
Application.GoBack
End Sub

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

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
SHIFT+F5
After opening a document, Moves to the location it was in when the document was last closed

If neceassry record this as a Macro called Auto_ope

Re
 
Back
Top