Focus on JTextField

Light Poster
3Apr2006,00:29   #1
kunju's Avatar
hello,

How can I set the cursor at the desired TextField? By defualt it sets in the
first TextField. I want to set in to the secon TextField?What is the method
using in Java? like any setFocuse()?

pls reply..
Team Leader
3Apr2006,07:29   #2
coderzone's Avatar
You need to call requestFocus() on the JTextField.
Contributor
4Apr2006,13:03   #3
Amit Ray's Avatar
Please look at requestFocus and requestFocusInWindow methods of the JComponent from the Java API docs : Focus Request Methods .

It is generally advised to use the later and avoid the requestFocus method whenever possible.

Amit Ray.
Team Leader
4Apr2006,19:00   #4
coderzone's Avatar
Quote:
Originally Posted by Amit Ray
It is generally advised to use the later and avoid the requestFocus method whenever possible.
Because there seems to have a bug in the requestFocus system http://bugs.sun.com/bugdatabase/view...bug_id=4449624