| Author |
badly stuck with GUI problem
|
Abhi Chat
Ranch Hand
Joined: Oct 10, 2004
Posts: 57
|
|
I am makin the GUi which has the main frame and container inside the public class...now i have an inner class which opens another frame as a popup.... now when i try to close the popup then the entire application closes. heres the code for the popup class... JPanel panel = new JPanel(); JFrame frame = new JFrame( "Graphs" ); frame.setSize(200,200); frame.getContentPane().add( panel ); frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE); //Make sure we have nice window decorations. frame.setDefaultLookAndFeelDecorated(true); //Display the window. frame.pack(); frame.setVisible(true); please advice
|
SCJP 1.4<br />Preparing for <br />SCJD and SCWCD
|
 |
Rachel Swailes
Ranch Hand
Joined: May 18, 2004
Posts: 434
|
|
Try using a different close operation for the frame, like DISPOSE_ON_CLOSE or HIDE_ON_CLOSE. How does that work for you? Cheers, rachel
|
 |
 |
|
|
subject: badly stuck with GUI problem
|
|
|