Resume from last edit location

  • Thread starter Thread starter dOinK
  • Start date Start date
D

dOinK

I remember reading somewhere how to set up Word to automatically, when a
document is opened, place the cursor where it was the last time the same
document was closed (or when it was saved, I'm not sure). I also remeber
trying it out, so I know this was (and hopefully still is) possible.

Do anyone reading this know how to obtain this? (preferably in Word 2002 or
2003)

Thanks
dOinK
 
dOink,

You can press Shift+F5 when the document opens. If your really want this
automated you can place the following AutoOpen macro in the document
template:


Sub AutoOpen()
Application.GoBack
End Sub
 
Thank you, Sir!

Greg Maxey said:
dOink,

You can press Shift+F5 when the document opens. If your really want this
automated you can place the following AutoOpen macro in the document
template:


Sub AutoOpen()
Application.GoBack
End Sub

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in (e-mail address removed)
 
Back
Top