Reputation: 99
I searched how to do this, but didn't find anything like what. I'm not good in English so I didn't know how this thing is called. Please someone tell me how to create something like this or how this thing is called. Thank you!
Upvotes: 3
Views: 134
Reputation: 4188
The easiest way is to use the SwingX library.
Example:
JComboBox combobox = new JComboBox(new Object[] { "One", "Two",
"Three", "Four", "Five" });
AutoCompleteDecorator.decorate(comboBox);
If you want to do it yourself, read this: http://www.orbital-computer.de/JComboBox/
Upvotes: 3