views:

28

answers:

1

Hi guys, basically I want my JFrame to become a completely new JFrame object when an event is triggered. I have some code that basically calls [CODE]GUI gui = new GUI(x, y)[/CODE] the only problem I'm having is that as well as creating the new GUI object, it is not deleting the old window. Can anyone tell me how to get rid of the old window.

Thanks.

A: 

I believe you need to call dispose on the existing JFrame first to free it up immediately.

SB