JDesktopPane and add a JInternalFrame problem!
Hi,
I'm using a JdesktopPane and I add to it some windows. I also mantaine a reference to some windows, but when I close the window and ask to review it, with the following code:
...
if(this.myWindow!=null)
{
this.myWindow.setVisible(true);
}
nothing appens. I've already added the window to the desktop with the add method, the window reference is not null but I can't see the window again.
How to do it?
Thanks

