Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/09/2004, 08:50
Avatar de jrp01
jrp01
 
Fecha de Ingreso: mayo-2004
Ubicación: México
Mensajes: 2.702
Antigüedad: 20 años, 7 meses
Puntos: 0
Como alinear un Jtextfield?

Hola tengo el siguiente codigo:

public void nuevoArchivo(){
JInternalFrame archivo=new JInternalFrame("Guardar Registros",true,true,true,true);
archivo.setBounds(10 ,10,ANCHO,LARGO);
JTextField texto = new JTextField ();
texto=new JTextField(50);
texto.setHorizontalAlignment (JTextField.LEFT);
texto.setBounds (10, 20, 10, 10);
archivo.getContentPane().add(texto);
escritorio.add(archivo);
archivo.show();
}

Pero no consigo poner el Jtextfield en tales coordenadas encontre esto texto.setBounds (10, 20, 10, 10); pero no funciona alguna idea