Full path in Word title bar

  • Thread starter Thread starter Bob Gandt
  • Start date Start date
B

Bob Gandt

How do I set Word to display the full title path of the
current document in the title bar? Now it shows only the
document name, not the path. When more than one
iteration of the document exists, this sometimes leads to
correcting, deleting, or otherwise messing with the wrong
doc.
 
You need a macro in normal.dot

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top