I have a bunch of JInternalFrames that are need to be added to a JDesktopPane, all JIFs are related to each others, each JIF has a next button when I press the next button I want the current JIF to be replaced with a new one; that means the old one should be dispose. Now I wonder how to dispose the old JInternalFrame, I thought it would be nice If I could keep a single instance of a JIF and always check if its not nulll then dispose it, but this is not working for me.

you guys have any idea?

link|improve this question

0% accept rate
2  
I'm not sure why you cant use Jinternalframe.dispose() – Sanjay Dec 7 '11 at 9:52
feedback

1 Answer

I'm not sure why you cant use Jinternalframe.dispose()

link|improve this answer
tnx for the reply, I can use dispose() but when I want to initialize new JIF to my instance than its not working anymore: e.g; JInternalFrame main = null; main = new MyJInternalFrame1(); main = new MyJInternalFrame2(); now I can't dispose() MyJInternalFrame2 – stsd Dec 8 '11 at 6:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.