#1   Report Post  
Posted to microsoft.public.word.docmanagement
PGB PGB is offline
external usenet poster
 
Posts: 1
Default File Path

In Word 2003 or older, I could see the full or absolute path of the file that
I'm working (It was under Web tool bar I think). I'm not able to find the
same in Word 2007. It was helpful to copy paste that link and send it to the
team.

So...where can I see the complete file path in Word 2007?
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default File Path

On Mon, 2 Nov 2009 08:36:11 -0800, PGB
wrote:

In Word 2003 or older, I could see the full or absolute path of the file that
I'm working (It was under Web tool bar I think). I'm not able to find the
same in Word 2007. It was helpful to copy paste that link and send it to the
team.

So...where can I see the complete file path in Word 2007?


You can add the same path box to the Quick Access Toolbar in Word
2007. Right-click the toolbar and choose Customize. Set the category
to All Commands, find and click on the item named Document Location,
and click the Add button.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default File Path

Click the Office button, and then click Word Options. In the Customize
category, locate the Document Location button and add it to the Quick Access
Toolbar.

--
Stefan Blom
Microsoft Word MVP




"PGB" wrote:

In Word 2003 or older, I could see the full or absolute path of the file that
I'm working (It was under Web tool bar I think). I'm not able to find the
same in Word 2007. It was helpful to copy paste that link and send it to the
team.

So...where can I see the complete file path in Word 2007?

  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default File Path

In a similar vein, you can add the path to the Word title bar with macros as
follows and add the last of the macros to a toolbar button or keyboard
shortcut to copy the filename and path to the clipboard and thereby save
valuable space on the QAT (Quick Access Toolbar) -
http://www.gmayor.com/installing_macro.htm The first three macros

Sub FileSaveAs()
On Error Resume Next
Dialogs(wdDialogFileSaveAs).Show
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

Sub FileSave()
On Error Resume Next
ActiveDocument.Save
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

and

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.TableGridlines = True
End With
ActiveWindow.ActivePane.View.ShowAll = False
End Sub

You can copy the filename and path to the clipboard with another macro

Sub CopyFilenameAndPath()
Dim dFname As DataObject
Dim fFname As String
Set dFname = New DataObject
On Error Resume Next
With ActiveDocument
If Len(.Path) = 0 Then .Save
fFname = .FullName
End With
dFname.SetText fFname
dFname.PutInClipboard
End Sub


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



PGB wrote:
In Word 2003 or older, I could see the full or absolute path of the
file that I'm working (It was under Web tool bar I think). I'm not
able to find the same in Word 2007. It was helpful to copy paste that
link and send it to the team.

So...where can I see the complete file path in Word 2007?



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 2007 Automatically Adds File Path at End of File Sam[_4_] New Users 2 September 25th 09 08:20 AM
Identify full path of file name in File Open list Eric Microsoft Word Help 0 February 8th 09 09:56 AM
How to delete file path stored in open file? Colada Microsoft Word Help 5 June 8th 07 07:37 AM
cannot open a word file. file name or path is invalid reghu Microsoft Word Help 2 February 24th 06 05:55 AM
How to remove a path to load a file I've moved under the File menu Donaldo New Users 15 August 25th 05 10:14 AM


All times are GMT +1. The time now is 11:23 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"