Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to what drive I'm accessing, because I save my worksheets on
several drives on the netwark. speedy509 -- Most grateful. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Jim
Paste these into the Thisworkbook module Private Sub Workbook_Open() ActiveWindow.Caption = ActiveWorkbook.FullName End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.Caption = "" End Sub Gord Dibben MS Excel MVP On Sat, 1 Jul 2006 12:08:01 -0700, Jim wrote: I would like to what drive I'm accessing, because I save my worksheets on several drives on the netwark. speedy509 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And if you just want to toggle on/off...............
Sub CaptionToggle() ' toggles title bar between document name and full path If ActiveWindow.Caption = ActiveWorkbook.Name Then ActiveWindow.Caption = ActiveWorkbook.FullName Else: ActiveWindow.Caption = ActiveWorkbook.Name End If End Sub Gord On Sat, 01 Jul 2006 12:32:40 -0700, Gord Dibben <gorddibbATshawDOTca wrote: Jim Paste these into the Thisworkbook module Private Sub Workbook_Open() ActiveWindow.Caption = ActiveWorkbook.FullName End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.Caption = "" End Sub Gord Dibben MS Excel MVP On Sat, 1 Jul 2006 12:08:01 -0700, Jim wrote: I would like to what drive I'm accessing, because I save my worksheets on several drives on the netwark. speedy509 Gord Dibben MS Excel MVP |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Don't know how to access the module to modify it. Have to leave now. Thanks
for the prompt reply. -- Most grateful. "Gord Dibben" wrote: Jim Paste these into the Thisworkbook module Private Sub Workbook_Open() ActiveWindow.Caption = ActiveWorkbook.FullName End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.Caption = "" End Sub Gord Dibben MS Excel MVP On Sat, 1 Jul 2006 12:08:01 -0700, Jim wrote: I would like to what drive I'm accessing, because I save my worksheets on several drives on the netwark. speedy509 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Two separate modules involved here depending which code you will use.
Right-click on the Excel Icon left of "File" and select "View Code" The two Workbook subs are to be pasted in there. If you want to use the CaptionToggle macro instead................. Hit CTRL + r to open the Project Explorer. Select your workbook/project by name and InsertModule Paste the CaptionToggle macro into that General Module. Save the workbook and hit ALT + Q to go back to Excel. Close the workbook and re-open. Gord On Sat, 1 Jul 2006 13:12:01 -0700, Jim wrote: Don't know how to access the module to modify it. Have to leave now. Thanks for the prompt reply. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
in your excel window go to view toolbars and tick web.You now see where you
are!You can remove all theother buttons if you like and just leave the address bar -- paul remove nospam for email addy! "Jim" wrote: I would like to what drive I'm accessing, because I save my worksheets on several drives on the netwark. speedy509 -- Most grateful. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You really don't have to add an *entire* toolbar to get this functionality.
You can right click in the toolbar and choose "Customize", <Commands tab, Scroll down in the left window and click on "Web", In the right window, click on and drag the "Address" box to either the toolbar or the menu bar, where's there's usually more room to expand the box. While the box is still selected, hover the cursor over a side border, and when it changes to a double arrow, drag to make the box wider if desired. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "paul" wrote in message ... in your excel window go to view toolbars and tick web.You now see where you are!You can remove all theother buttons if you like and just leave the address bar -- paul remove nospam for email addy! "Jim" wrote: I would like to what drive I'm accessing, because I save my worksheets on several drives on the netwark. speedy509 -- Most grateful. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove Hyperlinks...show the Path | Excel Discussion (Misc queries) | |||
Can I show server name instead of drive letter? | Excel Discussion (Misc queries) | |||
UDF and Calculation tree | Links and Linking in Excel | |||
Reflect file path (show drive letters) in Excel 2000 | Excel Discussion (Misc queries) | |||
How to change the Excel Title Bar to show the full file path na... | Excel Discussion (Misc queries) |