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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top