username = new JTextField("");
username.setBounds(330, 550, 230, 30);
username.addActionListener(this);
username.requestFocus(); // sets focus on JTextField
this.add(username);
| |||||
feedback
|
| |||||||||||||
feedback
|
|
See the Swing tutorial on Implementing a Document Filter for a preferred working solution. | |||
|
feedback
|