Ali
Ali

Reputation: 11560

autocomplete JTextField for netbeans

I created a desktop application in netbeans ,up to yesterday it was well but now the requirements are changed and client want all JTextField as autocomplete , the source is databse, I googled and tried to find any suitable example for netbeans but i was not able to find such thing so please help me how can I implement auto complete thing in netbeans? Please help

Upvotes: 1

Views: 7130

Answers (2)

mKorbel
mKorbel

Reputation: 109815

  • you can use AutoComplete JComboBox/JTextField based on standard Java5/6 API,

  • SwingX has(I tried one two years back) package for pallete in NetBeans

  • you can use and combine SwingX packages in/with Swing GUI without any limitations

Upvotes: 2

shan
shan

Reputation: 1202

You can use auto-complete package

Upvotes: 3

Related Questions