Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a floating toolbar in a workbook. On certain worksheets where it is
not applicable, I want to hide it. I can do it without any problem with following code: Private Sub Worksheet_Activate() If CommandBars("Custom Toolbar").Visible = True Then CommandBars("Custom Toolbar").Visible = False End If End Sub Since the toolbar is specific to the workbook, I also want to hide it when another workbook is activated. So I try same code as above: Private Sub Workbook_Deactivate() If CommandBars("Custom Toolbar").Visible = True Then CommandBars("Custom Toolbar").Visible = False End If End Sub However this time I have a problem. The error message is "CommandBars("Custom Toolbar")=...Object variable or with block variable not set". I am not sure what the problem is since same code works in the the case of worksheets. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
toolbar "button" for hiding/unhiding sheets | Excel Worksheet Functions | |||
Hiding Control Toolbar Checkboxes | Excel Discussion (Misc queries) | |||
Hiding a button when hiding rows | Excel Discussion (Misc queries) | |||
Hiding the Standard Toolbar | Excel Discussion (Misc queries) | |||
hiding menubar & toolbar | Excel Programming |