Hi folks, I am having 2 windows,where the second window is launched by clicking the button on first window.If the second is minimised and if user tries to click the button on first window, the second which is already opened should get maximised. Basically how to maximise the window from its minised postion?? can anybody give the method which does?? thanks, silva.
selvas kumars
Ranch Hand
Joined: Jan 06, 2001
Posts: 115
posted
0
i got the answer...i have to call setState(Frame.NORMAL) in Frame. silva.
Alex Ioannou
Greenhorn
Joined: Nov 14, 2001
Posts: 25
posted
0
Since java 1.4 there is a new set of methods to support window state operations. Under JFrame there is:- public void setExtendedState(int state) Sets the state of this frame. The state is represented as a bitwise mask. NORMAL Indicates that no state bits are set. ICONIFIED MAXIMIZED_HORIZ MAXIMIZED_VERT MAXIMIZED_BOTH Concatenates MAXIMIZED_HORIZ and MAXIMIZED_VERT. Note that if the state is not supported on a given platform, nothing will happen. The application may determine if a specific state is available via the java.awt.Toolkit#isFrameStateSupported(int state) method. Al