Hi there,
I'm trying to get a listbox to display selected items from multiple combo boxes in a single line. Currently I have two combo boxes and I would to have their selections displayed in a single line inside my listbox with a press of a button
im using
listbox.items.add(combobox1.selecteditem);
listbox.items.add(combobox2.selecteditem);
but its displaying the items on different lines
any help would be appreciated,
thanks