Word 2007 - keyboard shortcut

T

Thing One

In previous versions of Word I think I remember there being a keyboard
shortcut that would allow you, upon reopening a Word document, to
immediately return to the point of last revision. Does this still
exist in Word 2007? Thanks for any help!
 
B

Bogey Man

Shift+F5 will return you to the last point of edit if that is the last thing
that you was the last place the cursor was before saving and exiting the
document.
 
G

Graham Mayor

No, but it is easy to work around with a couple of macros in the normal
template

Sub FileSaveAs()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
Dialogs(wdDialogFileSaveAs).Show
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

Sub FileSave()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
ActiveDocument.Save
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

Sub AutoOpen()
If ActiveDocument.Bookmarks.Exists("OpenAt") = True Then
ActiveDocument.Bookmarks("OpenAt").Select
End If
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

http://www.gmayor.com/installing_macro.htm

The lines - ActiveWindow.Caption = ActiveDocument.FullName
are optional and put the document name in the Word title bar.

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

My web site www.gmayor.com

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

Graham Mayor

Not once you have closed the document in Word 2007.

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
B

Bogey Man

That could be the reason as I have far more of them than pure or converted
Word 2007 docs.

Thanks

Ron
 

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