Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I use a CAD program that show the open file's full path in the active
window's title bar. Very useful for knowing exactly where the file came from. Is that feature available in any of the MS Office modules? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
' normal module
Dim clAppEvents As Class1 Sub StartAppEvents() Set clAppEvents = New Class1 Set clAppEvents.xl = Excel.Application End Sub ' Class named Class1 Public WithEvents xl As Excel.Application Private Sub xl_WorkbookActivate(ByVal Wb As Workbook) xl.Caption = Wb.FullName 'or 'xl.Windows(1).Caption = Wb.FullName End Sub run StartAppEvents from a workbook open event. Code could go in any workbook, eg Personal.xls or an addin. Regards, Peter T "screenwriter" wrote in message ... I use a CAD program that show the open file's full path in the active window's title bar. Very useful for knowing exactly where the file came from. Is that feature available in any of the MS Office modules? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Display Full Path for File Diplayed at Top Of Workbook | Excel Discussion (Misc queries) | |||
Keep full file path in cell reference | Excel Discussion (Misc queries) | |||
full path of excel file | Excel Discussion (Misc queries) | |||
Full Pathname in Titlebar | Setting up and Configuration of Excel | |||
Getting the full path when from a File Open Dialog Box | Excel Programming |