Hi,
Is anybody knows how to make the combo box autofill.
Like if I type A all the list starting with A should be filtered and so on.
anybody out there tried this? if so please let me know.
Printable View
Hi,
Is anybody knows how to make the combo box autofill.
Like if I type A all the list starting with A should be filtered and so on.
anybody out there tried this? if so please let me know.
Your problem may be solved if you use combo control thats are associated with MS Forms object.
Scroll through the component list and add the ms form objects. You will get whole lot of text box,combo,labels,etc
The combo have the inherent facility that you are all looking about.
Thanks
Hope it solves your purpose.
:p
maybe else u can put all items in an array, on text change empty combobox and refill with something like:
for i = 1 to *
if left$(array(i), len$(text1.text)) = text1.text then combo1.additem text1.text
next i
hope it helpes u out