Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
Hi,
In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#2
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
One way is to click on Tools | Macro | Macros, add the following
line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web | Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#3
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
I'm using Word 2002. Is it different in Word 2002? Under Macros there is no
AutoOpen() macro but there is an "AutoExec" macro which has a lot of content. Should I add ActiveWindow.Caption = ActiveDocument.FullName and if so, where? Thanks. Jeff "garfield-n-odie [MVP]" wrote in message ... One way is to click on Tools | Macro | Macros, add the following line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web | Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#4
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
Many thanks. I found still another way at
http://www.ehow.com/how_2270494_disp...word-menu.html. Good luck, Dan S "garfield-n-odie [MVP]" wrote in message ... One way is to click on Tools | Macro | Macros, add the following line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web | Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#6
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
Yes, but that doesn't do what you requested, for which you need the macro.
-- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Daniel Schaffer wrote: Many thanks. I found still another way at http://www.ehow.com/how_2270494_disp...word-menu.html. Good luck, Dan S "garfield-n-odie [MVP]" wrote in message ... One way is to click on Tools | Macro | Macros, add the following line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#7
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
Dan
Do you not READ the answers? Garfield-n-Oldie suggested this solution in his very first reply to you. What's the point of asking questions if you don't read the answers! -- Terry Farrell - MSWord MVP "Daniel Schaffer" wrote in message ... Many thanks. I found still another way at http://www.ehow.com/how_2270494_disp...word-menu.html. Good luck, Dan S "garfield-n-odie [MVP]" wrote in message ... One way is to click on Tools | Macro | Macros, add the following line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web | Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
#8
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
Hi Terry,
Quite right. Mea culpa. Dan "Terry Farrell" wrote in message ... Dan Do you not READ the answers? Garfield-n-Oldie suggested this solution in his very first reply to you. What's the point of asking questions if you don't read the answers! -- Terry Farrell - MSWord MVP "Daniel Schaffer" wrote in message ... Many thanks. I found still another way at http://www.ehow.com/how_2270494_disp...word-menu.html. Good luck, Dan S "garfield-n-odie [MVP]" wrote in message ... One way is to click on Tools | Macro | Macros, add the following line to your AutoOpen() macro: ActiveWindow.Caption = ActiveDocument.FullName See http://www.gmayor.com/installing_macro.htm if you don't know how to install a macro. Another way is to click on Tools | Customize | Commands | Categories: Web | Commands: Address. Drag the Address command to your toolbar area. Click on Close. If you are prompted to save changes to your Normal.dot global template when you exit Word, say yes. Obviously, this method puts the path in the toolbar area, not in the title bar at the top of the screen. Daniel Schaffer wrote: Hi, In Word 2003 (in WinXP Pro SP3) I would like the title bar to show the path at which the document on which I'm working is located. Could someone explain to me how to do that? Thanks in advance. Dan |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I show path and filename on title bar in Office 2007? | New Users | |||
Office 2007 file path in windows title bar | Microsoft Word Help | |||
How can you display the path of the file in the title bar of Word | Microsoft Word Help | |||
File name and path not appearing in title bar | Microsoft Word Help | |||
Can I display the file path in the title bar of Word? | Microsoft Word Help |