Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Complete path info on Excel window

Hi,

Is there an add-in that shows the complete path info of the active workbook
at the top of the Excel window. I thought I had seen it before but I can't
find it through google.

Thanks
Andy


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Complete path info on Excel window

Couple of ways to get this.

If you've got the screen room to spare, you can simply add the "Web"
toolbar:
<View <Toolbars
And click on "Web".

This gives you, among other tools, the "Address" window, which will display
the full path of all *saved* WBs.

On the other hand, if your strapped for space like me, I added the "Address"
window to my *menu* bar, which always has room to spare.
The size of the window is adjustable, so you can try to display the entire
path at a glance.
This helps a great deal when you have 3 different servers storing varying
types of XL files.

To get the individual window, right click in the toolbar and choose
<Customize,
Under the "Commands": tab, scroll down in the left window and click on
"Web",
Then, click on and drag the "Address" box to either your toolbar or your
menu bar.

NOW ... while the "Customize" window is *still* open, click on the "Address"
box to select it, then hover the cursor over the right margin until it
becomes a double sided arrow, then click and drag to adjust the size as you
wish.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Andy" wrote in message
...
Hi,

Is there an add-in that shows the complete path info of the active
workbook at the top of the Excel window. I thought I had seen it before
but I can't find it through google.

Thanks
Andy



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Complete path info on Excel window

Thanks Ragdyer, this is very helpful and exactly what I want.

"Ragdyer" wrote in message
...
Couple of ways to get this.

If you've got the screen room to spare, you can simply add the "Web"
toolbar:
<View <Toolbars
And click on "Web".

This gives you, among other tools, the "Address" window, which will
display the full path of all *saved* WBs.

On the other hand, if your strapped for space like me, I added the
"Address" window to my *menu* bar, which always has room to spare.
The size of the window is adjustable, so you can try to display the entire
path at a glance.
This helps a great deal when you have 3 different servers storing varying
types of XL files.

To get the individual window, right click in the toolbar and choose
<Customize,
Under the "Commands": tab, scroll down in the left window and click on
"Web",
Then, click on and drag the "Address" box to either your toolbar or your
menu bar.

NOW ... while the "Customize" window is *still* open, click on the
"Address" box to select it, then hover the cursor over the right margin
until it becomes a double sided arrow, then click and drag to adjust the
size as you wish.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Andy" wrote in message
...
Hi,

Is there an add-in that shows the complete path info of the active
workbook at the top of the Excel window. I thought I had seen it before
but I can't find it through google.

Thanks
Andy





  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Complete path info on Excel window

You're welcome, and appreciate the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Andy" wrote in message
...
Thanks Ragdyer, this is very helpful and exactly what I want.

"Ragdyer" wrote in message
...
Couple of ways to get this.

If you've got the screen room to spare, you can simply add the "Web"
toolbar:
<View <Toolbars
And click on "Web".

This gives you, among other tools, the "Address" window, which will
display the full path of all *saved* WBs.

On the other hand, if your strapped for space like me, I added the
"Address" window to my *menu* bar, which always has room to spare.
The size of the window is adjustable, so you can try to display the

entire
path at a glance.
This helps a great deal when you have 3 different servers storing

varying
types of XL files.

To get the individual window, right click in the toolbar and choose
<Customize,
Under the "Commands": tab, scroll down in the left window and click on
"Web",
Then, click on and drag the "Address" box to either your toolbar or your
menu bar.

NOW ... while the "Customize" window is *still* open, click on the
"Address" box to select it, then hover the cursor over the right margin
until it becomes a double sided arrow, then click and drag to adjust the
size as you wish.
--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-

"Andy" wrote in message
...
Hi,

Is there an add-in that shows the complete path info of the active
workbook at the top of the Excel window. I thought I had seen it before
but I can't find it through google.

Thanks
Andy






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Complete path info on Excel window

One more...

You could use an application event that monitors when you change windows.

If you want to try:

You could use this in a new workbook (or add to your personal.xls file).

This goes under the ThisWorkbook module.

Option Explicit
Public WithEvents xlApp As Excel.Application
Private Sub Workbook_Open()
Set xlApp = Application
End Sub
Private Sub Workbook_Close()
Set xlApp = Nothing
End Sub
Private Sub xlApp_WindowActivate(ByVal Wb As Workbook, ByVal Wn As Window)
Wn.Caption = Wb.FullName
End Sub

If you save that workbook in your XLStart folder, then each time excel opens,
this workbook will open.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm


Andy wrote:

Hi,

Is there an add-in that shows the complete path info of the active workbook
at the top of the Excel window. I thought I had seen it before but I can't
find it through google.

Thanks
Andy


--

Dave Peterson


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copying info from a Browser window into Excel Don[_2_] Excel Worksheet Functions 2 March 20th 07 02:33 PM
Macro that opens a window giving you info in a few cells One-Leg Excel Discussion (Misc queries) 3 February 21st 07 09:15 PM
How do I add a window bar in the menu to show the file's unc path Steve M Setting up and Configuration of Excel 2 January 5th 07 05:09 AM
info window chrisatbpi Excel Discussion (Misc queries) 0 November 1st 06 03:59 PM
hyperlink navigation path path wrong in Excel 2003 CE Admin Excel Discussion (Misc queries) 5 January 7th 06 07:47 PM


All times are GMT +1. The time now is 05:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"