how to set the focus in the JTextField??
+1
A:
JTextField extends JComponent so JTextField would have this method.
Victor
2009-06-29 06:01:06
+2
A:
The abstract class Component which JTextField extends provides a requestFocus() method.
JTextField jtf = getTextFieldFromSomewhere();
jtf.requestFocus();
Darren Hicks
2009-06-29 06:02:08