Form Controls on Excel worksheet

H

H.G. Lamy

Hello,

can I use an array as input range for a (form) combo box ?

Kind regards,

H.G. Lamy
 
J

joel

You have to manuall in code use Additem to put each item of an arra
into a combobox


for i = 0 to Ubound(MyArray)

Listbox1.additem MyArrray(i)

next
 
Top