JInternalFrame Sizing
I have an application that uses JInternalFrame.
Except for one, all the frames have the following:
this.setResizable(false);
this.setClosable(false);
that one frame has both of them set to true.
now, the problem comes on i follow the following steps:
1. i open 1 non-resizable frame.
2. with that frame visible, i open the resizable frame.
3. now when both of them are visible in their deault size, i maximize the resizable frame.
4. then i close this resizable frame in its maximized state.
5. the frame in the background(non-resizable one) also gets maximized.
this is the problem. i do not want this to happen.
-
please suggest a probable reason for this and a solution too.
Thankyou
kapilChhabra

