Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
i would like to hide all comboboxes on a particular sheet without knowing all their names is this possible? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Option Explicit
Sub testme() Dim OLEObj As OLEObject For Each OLEObj In ActiveSheet.OLEObjects If TypeOf OLEObj.Object Is MSForms.ComboBox Then OLEObj.Visible = False End If Next OLEObj End Sub sunilpatel wrote: Hi i would like to hide all comboboxes on a particular sheet without knowing all their names is this possible? Thanks -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ComboBoxes | Excel Programming | |||
OLE comboboxes | Excel Programming | |||
comboboxes | Excel Programming | |||
ComboBoxes | Excel Programming | |||
Comboboxes | Excel Programming |