Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there VBA code similar to
Application.CommandBars(1).Enabled = False but to hide all the toolbar icons Thanks in anticipation |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For example, to hide the "View" menu:
Application.CommandBars("Worksheet Menu Bar").Controls("View").Visibl = False - Piku -- Message posted from http://www.ExcelForum.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
but to hide all the toolbar icons?
Do you mean all toolbars?? -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "Lawlera" wrote in message ... Is there VBA code similar to Application.CommandBars(1).Enabled = False but to hide all the toolbar icons? Thanks in anticipation |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi lawlera
Use this then It also hide the Worksheet menu bar Sub hide() Dim bar As CommandBar For Each bar In Application.CommandBars bar.Enabled = False Next End Sub Sub show() Dim bar As CommandBar For Each bar In Application.CommandBars bar.Enabled = True Next End Sub -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "lawlera" wrote in message ... Yes!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide the menubars and toolbars | Excel Discussion (Misc queries) | |||
hide toolbars, menu bar, etc | Excel Discussion (Misc queries) | |||
close (hide) toolbars | Excel Discussion (Misc queries) | |||
How do I hide and show all toolbars | Excel Worksheet Functions | |||
Hide all toolbars auto_open | Excel Programming |