Yes, once the document is closed, but it is easy enough 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
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>