Hello, can I use an array as input range for a (form) combo box ? Kind regards, H.G. Lamy
H H.G. Lamy Jan 15, 2010 #1 Hello, can I use an array as input range for a (form) combo box ? Kind regards, H.G. Lamy
J joel Jan 15, 2010 #2 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
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