-4

i'm developing an app in java, i have seen in c# the autocomplete suggest in windows forms and is exactly what i need. Is there any equivalent in java? Is similar like this. c# autocomplete suggest image

Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356
fpilee
  • 1,918
  • 2
  • 22
  • 38
  • possible duplicate of [Create a autocompleting textbox in Java with a dropdown list](http://stackoverflow.com/questions/14186955/create-a-autocompleting-textbox-in-java-with-a-dropdown-list) also http://stackoverflow.com/questions/11583344/java-jcombobox-autocomplete – Brian Roach Feb 11 '13 at 17:52
  • oks. Where is the reference guide for windows form programming in c#? – fpilee Feb 11 '13 at 18:04
  • I absolutely hate it when Google isn't working. Give it a few minutes, and maybe it will be back up and running soon. – Hovercraft Full Of Eels Feb 11 '13 at 18:18

1 Answers1

1

I think the answer to your questions is in this other Stack Overflow thread: How could I implement autocompletion using Swing?

Note, the one that's accepted as the answer didn't get as much votes as the one that says:

You might want to try the free AutoComplete component over at SwingLabs.

http://swinglabs.org

There is an example how to implement this code at:

http://javadesktop.org/swinglabs/build/weekly/latest/swingx-HEAD/javadoc/org/jdesktop/swingx/autocomplete/package-summary.html

Community
  • 1
  • 1
Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356