Ver Mensaje Individual
  #7 (permalink)  
Antiguo 17/06/2013, 21:44
Avatar de chuidiang
chuidiang
Colaborador
 
Fecha de Ingreso: octubre-2004
Mensajes: 3.774
Antigüedad: 20 años, 3 meses
Puntos: 454
Respuesta: Eliminar fila de un JTable

Lo dicho, el problema es hacer tanto new, sólo debes hacer uno.

Tampoco te podemos ayudar si cambias el código...., en el primer post el constructor era este

Código java:
Ver original
  1. public frmSincronizar() {
  2.         initComponents();
  3.  
  4.         Dimension pantalla = Toolkit.getDefaultToolkit().getScreenSize();
  5.         Dimension ventana = this.getSize();
  6.         this.setLocation((pantalla.width - ventana.width)/2, (pantalla.height - ventana.height)/6 );
  7.         this.setVisible(true);
  8.  
  9.         cargarTablaGuia();
  10.     }

que tiene un initComponents y un setVisible(true), que parece has quitado.

Se bueno.
__________________
Apuntes Java
Wiki de Programación