Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Back in Excel 4.0 I used the following to take a snapshoot of what
toolbars where visible\active then remove them SET.NAME("toolbarStatus",GET.TOOLBAR(9)) IF(NOT(ISERROR(toolbarStatus))) FOR("barCount",1,COLUMNS(toolbarStatus)) SHOW.TOOLBAR(INDEX(toolbarStatus,1,barCount),FALSE ) NEXT() END.IF() Then to put them back I used: IF(NOT(ISERROR(toolbarStatus))) FOR("barCount",1,COLUMNS(toolbarStatus)) SHOW.TOOLBAR(INDEX(toolbarStatus,1,barCount),TRUE) NEXT() END.IF() Looking for a VBA equivalent. -Randy- |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
toolbars | New Users to Excel | |||
Toolbars | Excel Discussion (Misc queries) | |||
toolbars | Excel Discussion (Misc queries) | |||
toolbars | Setting up and Configuration of Excel | |||
toolbars | Excel Programming |