Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to show the Open File dialog box when a user clicks on a JTextField?
  2. this.textField.addFocusListener(new FocusListener() {
  3.  
  4.     public void focusGained(FocusEvent event) {
  5.       // Show the Open File dialog box.
  6.       // Same as lines 86-93 in the link below.
  7.     }
  8.  
  9.     public void focusLost(FocusEvent event) {
  10.       // Do nothing.
  11.     }
  12.  
  13.  }