Initiating multiple combo boxes with the same values
Carlee, Post your entire userform_initialize sub and I'll try to
figure out what's wrong. James
On Jun 8, 4:04?pm, Carlee wrote:
Hi,
So, the errror 'Type mismach 13' is occuring when i click a on my Main Menu
UserForm, to open my StockpileDump data entry form, the form to which i am
trying to initialize. No control source properties contain any data.
Any further suggestions i could test?
--
Carlee
"Zone" wrote:
If you want the same values in each combobox and you want the same
listindex selection for all, something like this should work:
Private Sub UserForm_initialize()
Dim cmb As ComboBox
For Each cmb In Me.Controls
With cmb
.AddItem "a"
.AddItem "b"
.ListIndex = 1
End With
Next cmb
End Sub
James
On Jun 8, 12:41?am, Carlee wrote:
Hello,
I have a number ofcomboboxeson a UserForm all requiring the same values
for hte user to select. Is there an efficient way for me to populate the
select options for eachcombobox, rather, than initializing eachcombobox
on the forms initialize event?
--
Carlee- Hide quoted text -
- Show quoted text -
|