I need to remove all items from the combo box
int itemCount = combo.getItemCount(); for(int i=0;i
You can use
this.combo.removeAllItems();
to remove all the items in JComboBox.