Originally posted by vidhya subramaniam:
Hi Kavita,
No it is not necessary for a masters degree. if you want to give your SCJP they dont ask you any degree for it.
Vidhya.
Originally posted by Jayakumar Gopalan:
I have got three buttons in my applet, upon clicking the buttons it will open new frame. Now what I want is even for the second if the same button is clicked, instead of opening the new frame, I should show the already opened frame for that button to appear as the top level active frame on the screen.
I used frame.toFront(), frame.requestFocus() methods which worked fine as long as the frame is not minimised. When the frame is minimised I couldn't make it appear as the top level active frame on the screen.
I tried frame.setState( Frame.NORMAL ) and then frame.requestFocus() methods, which actually worked, but unfortunately the setState() method is supported by IE and Netscape 4.73 (becoz those supports only JDK 1.1). But it worked in Netscape 6 (as it supports JDK1.3).
Now I want to know is there any equivalent method for setState(int ) in JDK1.1 or how to handle this situtation.
Thanks in advance.
Regards,
Jayakumar