Word 2007 Full path name display

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!!!!
 
D

Dawn Crosier, Word MVP

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!!!!
 

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