|
how to focus to another JTextfield?
If i create an object where the object is return within a private function and added into jContentPane, something like this
jContentPane.add(getTextField1);
jContentPane.add(getTextField2)
Is there it anyway for me to have my cursor focus onto the next JTextfield once the user enter his info for that field?
Once he's done with "getTextField1" hits enter and it will jump to the next field "getTextField2"?
|