D DavidMSPeace Feb 26, 2009 #1 How to display the full path of the active Word document in the Active title bar.
J Jay Freedman Feb 27, 2009 #2 DavidMSPeace said: How to display the full path of the active Word document in the Active title bar. Click to expand... Store this macro in the Normal.dot (for Word 2003 and earlier) or Normal.dotm (for Word 2007) template: Sub AutoOpen() ActiveWindow.Caption = ActiveDocument.FullName End Sub See http://www.gmayor.com/installing_macro.htm. -- Regards, Jay Freedman Microsoft Word MVP Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
DavidMSPeace said: How to display the full path of the active Word document in the Active title bar. Click to expand... Store this macro in the Normal.dot (for Word 2003 and earlier) or Normal.dotm (for Word 2007) template: Sub AutoOpen() ActiveWindow.Caption = ActiveDocument.FullName End Sub See http://www.gmayor.com/installing_macro.htm. -- Regards, Jay Freedman Microsoft Word MVP Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.