Word 2007 Full path name display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Even running a macro that is ActiveWindow.Caption = ActiveDocument.FullName,
I still do not see full path name. I have many docs with same name that I
will have open in multiple windows. I need to see full path to i.d. them by
appropriate client.

Any ideas how I can get my title bar to show full path, or, alternatively,
as I did in prior versions, open a toolbar showing the "web" address?

Thanks!!!!
 
Make sure that your macro is contained within a module inside your
Normal.dotm template.
Your macro should be an AutoNew macro.

Sub AutoOpen()

'Displays the Document Path in the Title Bar

ActiveWindow.Caption = ActiveDocument.FullName

End Sub


--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"

This message was posted to a newsgroup, Please post replies and questions
to the group so that others can learn as well.
Even running a macro that is ActiveWindow.Caption = ActiveDocument.FullName,
I still do not see full path name. I have many docs with same name that I
will have open in multiple windows. I need to see full path to i.d. them by
appropriate client.

Any ideas how I can get my title bar to show full path, or, alternatively,
as I did in prior versions, open a toolbar showing the "web" address?

Thanks!!!!
 
Back
Top