hello i have a problem with the focus
mytext= new JTextField();
mytext.requestFocus(true);
gc.fill =GridBagConstraints.HORIZONTAL ;
gc.gridx =3; gc.gridy=4;
gbl.setConstraints(mytext,gc);
jContentPane.add(mytext);
i tried
mytext.requestFocus();
too
and how can i auto-select the text in the textfield so the text is marked?
thanks