hi,
this seems like it should be simple and I'm probably just missig something basic but ...
None of the comboboxes in my VB 2005 windows application will fill. The code works in other applications. Even a brand new combobox that is added and given a list a items in the Design view doesn't appear filled. The box shows up but when click, instead of a drop down list of items, it appears to drop but to have nothing in it. This program was upgraded (through the wizard) from VB6 so maybe something didn't get upgraded correctly? Any ideas are appreciated.
The code is really straight forward, something like:
for j=1 to 5
combobox1.items.add(j)
next
Thanks