Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have been trying to get a file to remove a toolbar when the file is closed.
Currently the toolbar is generated with code upon opening the file. This works good. But, I cannot figure out how to get it to delete when I close the file. This is what I have at this point: Private Sub App_WorkbookBeforeClose(ByVal Wb As Workbook, _ Cancel As Boolean) Application.CommandBars("my toolbar").Delete Cancel = False End Sub TIA |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What you show is an application level event. Assuming that is what you
want, You would need to instantiate application level events. See Chip Pearson's site http://www.cpearson.com/excel/appevent.com -- Regards, Tom Ogilvy "Papa Jonah" wrote in message ... I have been trying to get a file to remove a toolbar when the file is closed. Currently the toolbar is generated with code upon opening the file. This works good. But, I cannot figure out how to get it to delete when I close the file. This is what I have at this point: Private Sub App_WorkbookBeforeClose(ByVal Wb As Workbook, _ Cancel As Boolean) Application.CommandBars("my toolbar").Delete Cancel = False End Sub TIA |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom - better make that .htm instead of .com :-)
http://www.cpearson.com/excel/appevent.htm -- Regards Ken....................... Microsoft MVP - Excel Sys Spec - Win XP Pro / XL 97/00/02/03 ---------------------------------------------------------------------------- It's easier to beg forgiveness than ask permission :-) ---------------------------------------------------------------------------- <snip |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom - better make that .htm instead of .com :-)
http://www.cpearson.com/excel/appevent.htm -- Regards Ken....................... Microsoft MVP - Excel Sys Spec - Win XP Pro / XL 97/00/02/03 ---------------------------------------------------------------------------- It's easier to beg forgiveness than ask permission :-) ---------------------------------------------------------------------------- |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
A workbook level event would be fine with me, but I couldn't get it to work
so I settled for application level. "Tom Ogilvy" wrote: What you show is an application level event. Assuming that is what you want, You would need to instantiate application level events. See Chip Pearson's site http://www.cpearson.com/excel/appevent.com -- Regards, Tom Ogilvy "Papa Jonah" wrote in message ... I have been trying to get a file to remove a toolbar when the file is closed. Currently the toolbar is generated with code upon opening the file. This works good. But, I cannot figure out how to get it to delete when I close the file. This is what I have at this point: Private Sub App_WorkbookBeforeClose(ByVal Wb As Workbook, _ Cancel As Boolean) Application.CommandBars("my toolbar").Delete Cancel = False End Sub TIA |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Removing check boxes (forms toolbar) | Excel Worksheet Functions | |||
Having problem removing toolbar envelope. | Excel Discussion (Misc queries) | |||
Removing custom toolbar from Excel 2003 | Excel Discussion (Misc queries) | |||
Removing all code from a Project | Excel Programming | |||
Removing a module with code | Excel Programming |