Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a custom menu tab that contains a submenu item which contains a
combobox. I would like to set the zoom property of several worksheets to the value of the combobox when it is changed. 1.) How can I get the value of the combobox? I want to call this Sub when the combox is changed. Public Sub ChangeDeptViews() SubName = "ChangeDeptViews" ' make sure Global Schedule is the active sheet If Not IsGlobalAvailable() Then Exit Sub End If Application.ScreenUpdating = False ' store current sheet Set wksCurrentSheet = ActiveSheet Sheets(Array("Engineering", "Graph Prod", "Metal Fab", "Alum Ext", _ "Custom Fab", "Electrical", "Ch Ltrs", "Foam Fab", _ "Metal Paint", "Thermo", "Tri Graphics", "Deco Faces", _ "Tri-Face", "LED", "Crating", "Service", "Delivery")).Select Sheets("Engineering").Activate DOESN'T WORK ActiveWindow.Zoom = CommandBars(1).Controls("Depts. View").Value ' restore sheet that was active wksCurrentSheet.Activate Application.ScreenUpdating = False End Sub -- Cheers, Ryan |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change Zoom Value of Window with ComboBox in Custom Menu Control | Excel Programming | |||
Macro that Finds the First Value in a range using a Combobox (drop down menu) | Excel Worksheet Functions | |||
Combobox items determined by the selection in another combobox | Excel Programming | |||
combobox in a menu | Excel Programming | |||
ComboBox list reliant on the entry from a different ComboBox | Excel Programming |