If I populate a combo box list by name:
No problem.
But...
if I loop through the combo boxes like this:
I get "Object doesn't support this property or method"
If I declare cb as a varaint I get the same problem.
Code:
combobox1.List = Sheets("Admin").Range("benefittype").Value
No problem.
But...
if I loop through the combo boxes like this:
Code:
Dim cb As OLEObject
For Each cb In Sheets("FORM 1908").OLEObjects
cb.List = Sheets("Admin").Range("benefittype").Value
Next cb
I get "Object doesn't support this property or method"
If I declare cb as a varaint I get the same problem.