Hello I have a problem with the focus
mytext= new JTextField(); mytext.requestFocus(true); gc.fill =GridBagConstraints.HORIZONTAL ; gc.gridx =3; gc.gridy=4;
As for selecting all the text you should use...
mytext.selectAll();
As for getting focus, maybe you should try the requestFocus function after everything has been added to jContentPane.