JComboBox autocomplete

If you want to do this yourself, you can follow the steps explained in this article.

this.comboBox = new JComboBox(new Object[] { "Ester", "Jordi",
        "Jordina", "Jorge", "Sergi" });
AutoCompleteDecorator.decorate(this.comboBox);

Leave a Comment