Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
how can i delete all toolbars and menus from my workbooks when i start a certain excel application? the objective is to the end user work only with the controls that i've created. thanks, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
application.commandbars.item("Standard").visible = false
application.commandbars.item("formatting").visible = false These are the standard toolbars. If you want to hide them all: for x = 1 to applicaiton.commandbars.count application.commandbars.item(x).visible = false next x -----Original Message----- hi, how can i delete all toolbars and menus from my workbooks when i start a certain excel application? the objective is to the end user work only with the controls that i've created. thanks, . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi devnext
Dim bar As CommandBar For Each bar In Application.CommandBars bar.Enabled = False Next Set it to True to get them back -- Regards Ron de Bruin (Win XP Pro SP-1 XL2002 SP-2) www.rondebruin.nl "devnext" wrote in message ... hi, how can i delete all toolbars and menus from my workbooks when i start a certain excel application? the objective is to the end user work only with the controls that i've created. thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Toolbars | Excel Discussion (Misc queries) | |||
Toolbars | Excel Discussion (Misc queries) | |||
Toolbars | Excel Discussion (Misc queries) | |||
Toolbars | Excel Discussion (Misc queries) | |||
toolbars | Setting up and Configuration of Excel |