Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/12/2010, 10:37
sirdaiz
 
Fecha de Ingreso: diciembre-2010
Mensajes: 459
Antigüedad: 13 años, 5 meses
Puntos: 21
Respuesta: Problemas con JButton

prueba ponerle a tu jpanel estas propiedades

this.setBounds(x,y,t,z);
this.setLayout(null);

y despues a tu boton

volver=new JButton("Volver a pagina principal");
volver.setBounds(450, 650, 180, 20);
this.add(volver);
volver.addActionListener(new AltaPaginaPrincipalAction(this));

algo asi