I have 6 combo boxes on a vb form. Is there a way, using vb6, to remove the list item that was selected in the first combo box from the list of the second, third fourth, fifth, and sixth combo box list?
This is what I have tried with no luck
This is what I have tried with no luck
Code:
cb = combobox1.listindex combobox2.list = combobox1.list combobox2.removeitem cb
Comment