Multiple Combo Boxes???

H

hce

Hi

Is it possible to have 2 or more combo boxes in one userform...? I
yes, how can i do it? I understand to put in the values for the comb
box i need to use initialize... the system does not allow me to us
more than 1 initialize so how can i get more than 1 combo box t
work...? any suggestion/advice would certainly be more than welcome
cos i have tried for ages...

cheer
 
R

R D S

Hi,
your comboox will have a name

eg i have one called accountlist and it works as such
With accountlist
.AddItem "Counter Sale"
.Add Item etc.......
End With

Do this for each combobox,
Rick
 
Top