How to show the path of a filename in Word 2007?

  • Thread starter Thread starter Gerry Wolff
  • Start date Start date
G

Gerry Wolff

When I have a file loaded into Word 2007, I see the filename in the bar
at the top of the screen.

Can anyone tell me how to show the full path of the file, as well as the
name of the file?

With thanks.
 
You can add the Document Location item to the Quick Access Toolbar. You
will find it in the Commands Not in Ribbon (or All Commands) group.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
 
When I have a file loaded into Word 2007, I see the filename in the bar
at the top of the screen.

Can anyone tell me how to show the full path of the file, as well as the
name of the file?

With thanks.

OK, many thanks.

Gerry
 
Include the line
ActiveWindow.Caption = ActiveDocument.FullName
in an autoopen macro in the normal template - seehttp://www.gmayor.com/installing_macro.htm

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

My web sitewww.gmayor.com
Word MVP web sitehttp://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

OK, thanks but this is a bit too advanced for me.

Regards,

Gerry
 
Press ALT+F8. Do you have a macro called AutoOpen? If you have not created
one then you won't have so use the link I posted earlier
http://www.gmayor.com/installing_macro.htm to assist you to add the
following macro. This isn't difficult!

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


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

My web site www.gmayor.com

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