Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/07/2013, 08:43
Avatar de dackiller
dackiller
 
Fecha de Ingreso: septiembre-2003
Ubicación: The Matrix
Mensajes: 341
Antigüedad: 21 años, 2 meses
Puntos: 4
Respuesta: Problemas con Jpanel

Debe haber algo que estas haciendo mal, tal vez tu JPanel no esta dentro de un Thread captirador de eventos.

Código Java:
Ver original
  1. SwingUtilities.invokeLater(new Runnable() {
  2.     public void run() {
  3.         createAndShowGUI();
  4.     }
  5. });

http://docs.oracle.com/javase/tutori...y/initial.html
__________________
--
NOTA: Si haz conseguido la solución a tu problema, por favor edita el titulo del tema colocando el prefijo [SOLUCIONADO], para que otros usuarios puedan encontrar soluciones más rápido.