| Author |
JFrame
|
Rus Corina
Ranch Hand
Joined: Jul 08, 2011
Posts: 90
|
|
|
Hi, I have an application that consists of a main frame, and then when i press a button another frame opens. Now, I have a problem. When i close the second frame that's opened from the first one, it causes both frames to close. Do you have any idea how to avoid that? I mean, when i close the second frame, i want to close just it, not the main one as well.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Don't use EXIT_ON_CLOSE as the default close operation but DISPOSE_ON_CLOSE instead. EXIT_ON_CLOSE causes System.exit to be closed, which will terminate the entire JVM. DISPOSE_ON_CLOSE only disposes (closes) the frame itself.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Rus Corina
Ranch Hand
Joined: Jul 08, 2011
Posts: 90
|
|
|
Thank you very much.It worked
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You're welcome.
|
 |
Sultan Ali
Greenhorn
Joined: Jul 21, 2011
Posts: 7
|
|
Use the Dispose function for that frame only when you click the button call this dispose in your actionperformed
|
 |
 |
|
|
subject: JFrame
|
|
|