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 |
|
You need to call requestFocus() on the JTextField.
|
|
Contributor
|
|
| 4Apr2006,13:03 | #3 |
|
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 |
|
Quote:
Originally Posted by Amit Ray |

