no, si no tengo problemas al pintar la imagen, tengo problemas para pintarla en otra ventana que ya esta inicializada...Pero muchas gracias por tu respuesta
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúprivate void bVerDocActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
this.setVisible(false);
if(lResultados.getSelectedIndex()==0){
fc.setFileFilter(new FileNameExtensionFilter("Archivos de imagen", "jpg", "jpeg", "png", "gif"));
int opcion = fc.showDialog(this, "Abrir");
if (opcion == JFileChooser.APPROVE_OPTION)
{
File file = fc.getSelectedFile();
//
//Aqui intento crear un obeto del menu principal para poner la imagen
objMN.mostrarImagen2(file);
objMN.cargaDirectorio(file.getParent(),new MenuPrincipal());
}
}
// VP.PrepararPagina(this);
// new MenuPrincipal(lResultados.getSelectedIndex(),1);
}