Reopen « JInternalFrame « Java Swing Q&A





1. Reopen JInternalFrame    coderanch.com

2. How to reopen a JInternalFrame properly?    coderanch.com

Hi, maybe someone could help me with this... I have the following function ( where claimSelection is a JInternalFrame and desktop is a JDesktopPane ) which can be called from a menu of my application: private void ShowClaimSelectPanel(java.awt.event.ActionEvent evt) { if ( claimSelection == null ) { // create a new instance only once! claimSelection = new ClaimSelection(); claimSelection.setVisible( true ); ...