2

I have developed a java gui that contains two jTextField views for displaying the source and destination file paths. And , the user selects more than one file path , i would like to display previous paths in a pop-up attached to the jTextField. This is a common feature in almost all app. Does anyone knows how this is called, in order to google how to do it?

enter image description here

mKorbel
  • 109,525
  • 20
  • 134
  • 319
Lidia
  • 415
  • 1
  • 4
  • 21
  • See [this](http://stackoverflow.com/questions/14186955/create-a-autocompleting-textbox-in-java-with-a-dropdown-list/14194104#14194104) similar answer. – David Kroukamp Jan 26 '13 at 21:27

1 Answers1

4

It is called editable JComboBox.

Dan D.
  • 32,246
  • 5
  • 63
  • 79