Browser preference to be changed 2004-09-28 - By Govind Kotwani
Back Hi,
Is there any way through which we open the browser in full screen mode.I don't want to open the child window or any pop up in full screen,What I need is when the application is launched,browser should be opened in full screen mode.
Regards, Govind
Shivprasad_Bade <Shivprasad_Bade@(protected)> Sent by: "A mailing list for Java(tm) 2 Platform, Enterprise Edition" <J2EE-INTEREST@(protected)> 07/20/2004 03:23 PM
Please respond to "A mailing list for Java(tm) 2 Platform, Enterprise Edition" <J2EE-INTEREST@(protected)>
To J2EE-INTEREST@(protected) cc
Subject Re: Browser preference to be changed
You can try this one...
---
<BODY onLoad="winload()"> <OBJECT ID="WB" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"> </OBJECT> <SCRIPT LANGUAGE="JavaScript1.2"> <!-- function winload() { if(navigator.appName=="Microsoft Internet Explorer") { var BrowserVerStr =navigator.appVersion; parts = BrowserVerStr.split(";"); var preBrowVer = parts[1] var BVNum=parseFloat((preBrowVer.substring(5,preBrowVer.length))) if (BVNum >= 5.5) { WB.ExecWB(45,2) } else { window.close() } } } //--> </SCRIPT> </BODY>
----
But its works only with IE 5.5
-
Regards,
Have a nice day..!!!
Shivprasad Bade
-- --Original Message-- -- From: Srinivasa Sai Chakravarthy V (CTC) [mailto:Chakravarthy.V@(protected)] Sent: Tuesday, July 20, 2004 2:46 PM To: J2EE-INTEREST@(protected) Subject: Re: Browser preference to be changed
You can supress the message if the window is not the main window.In the sense,If you are closing a window which is opened by window.open() then if you close the window by using window reference then confirmaiton won't popup.But it is a new instance opened without reference then the mesage will popup.We cannot stop this confirmation bcoz it will popup for Main window only.
Thanks & Regards V.Srinivasa sai chakravarthy __ ____ ____ ____ ______ AIU Travel Insurance TATA Consultancy Services AIG-TCS Chennai Technology Center #1, Jawaharlal Nehru Road Vadapalani, Chennai - 600 026, TamilNadu, India
Phone No : +91 44 5550 5266 __ ____ ____ ____ ______
> -- --Original Message-- -- > From: A mailing list for Java(tm) 2 Platform, Enterprise Edition > [SMTP:J2EE-INTEREST@(protected)] On Behalf Of > Sonali_Kansara/BLR/TCS%TCS@(protected) > Sent: Tuesday, July 20, 2004 1:02 PM > To: J2EE-INTEREST@(protected) > Subject: Browser preference to be changed > > > Hello, > My current application (consisting of framesets ) prompts a > confirmation (The browser is trying to close the window ....Do you > want to close it ? ) when I try to close the window . I want to > suppress this browser message . How do I go about doin this , can I > set properties of the Navigator object ? .........How ? > > Please assist me > > Thanks in advance > > Regards, > Sonali << File: InterScan_Disclaimer.txt >>
=========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help". ************************************************************************** This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain material that is CONFIDENTIAL AND PRIVATE COMPANY INFORMATION. Any review or reliance by others or copying or distribution or forwarding of any or all of the contents in this message is STRICTLY PROHIBITED. If you are not the intended recipient, please contact the sender by email and delete all copies; your cooperation in this regard is appreciated. **************************************************************************
=========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help".
ForwardSourceID:NT00000F46
=========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help".
<br><font size=2 face="sans-serif">Hi,</font> <br> <br><font size=2 face="sans-serif">Is there any way through which we open the browser in full screen mode.I don't want to open the child window or any pop up in full screen,What I need is when the application is launched,browser should be opened in full screen mode.</font> <br> <br><font size=2 face="sans-serif">Regards,</font> <br><font size=2 face="sans-serif">Govind</font> <br> <br> <br> <br> <br> <br> <br> <table width=100%> <tr valign=top> <td width=40%><font size=1 face="sans-serif"><b>Shivprasad_Bade <Shivprasad _Bade@(protected)></b> </font> <br><font size=1 face="sans-serif">Sent by: "A mailing list for Java(tm) 2 Platform, Enterprise Edition" <J2EE-INTEREST@(protected)></font> <p><font size=1 face="sans-serif">07/20/2004 03:23 PM</font> <br> <table border> <tr valign=top> <td bgcolor=white> <div align=center><font size=1 face="sans-serif">Please respond to<br> "A mailing list for Java(tm) 2 Platform, Enterprise Edition" <J2EE-INTEREST@(protected)></font></div></table> <br> <td width=59%> <table width=100%> <tr> <td> <div align=right><font size=1 face="sans-serif">To</font></div> <td valign=top><font size=1 face="sans-serif">J2EE-INTEREST@(protected)</font> <tr> <td> <div align=right><font size=1 face="sans-serif">cc</font></div> <td valign=top> <tr> <td> <div align=right><font size=1 face="sans-serif">Subject</font></div> <td valign=top><font size=1 face="sans-serif">Re: Browser preference to be changed</font></table> <br> <table> <tr valign=top> <td> <td></table> <br></table> <br> <br> <br><font size=2><tt>You can try this one...<br> <br> ---<br> <br> <BODY onLoad="winload()"><br> <OBJECT ID="WB" WIDTH=0 HEIGHT=0<br> CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"><br> </OBJECT><br> <SCRIPT LANGUAGE="JavaScript1.2"><br> <!-- function winload() { if(navigator.appName=="Microsoft Internet Explorer") { var BrowserVerStr =navigator.appVersion; parts = BrowserVerStr.split(";"); var preBrowVer = parts[1] var BVNum=parseFloat((preBrowVer.substring(5,preBrowVer.length))) if (BVNum >= 5.5) { WB.ExecWB(45,2) } else { window.close() } } } //--><br> </SCRIPT><br> </BODY><br> <br> ----<br> <br> <br> But its works only with IE 5.5<br> <br> <br> <br> -<br> <br> Regards,<br> <br> Have a nice day..!!!<br> <br> Shivprasad Bade<br> <br> <br> -- --Original Message-- --<br> From: Srinivasa Sai Chakravarthy V (CTC) [mailto:Chakravarthy.V@(protected)]<br> Sent: Tuesday, July 20, 2004 2:46 PM<br> To: J2EE-INTEREST@(protected)<br> Subject: Re: Browser preference to be changed<br> <br> <br> You can supress the message if the window is not the main window.In the<br> sense,If you are closing a window which is opened by window.open() then if<br> you close the window by using window reference then confirmaiton won't<br> popup.But it is a new instance opened without reference then the mesage will<br> popup.We cannot stop this confirmation bcoz it will popup for Main window<br> only.<br> <br> <br> <br> Thanks & Regards<br> V.Srinivasa sai chakravarthy<br> __ ____ ____ ____ ______<br> AIU Travel Insurance<br> TATA Consultancy Services<br> AIG-TCS Chennai Technology Center<br> #1, Jawaharlal Nehru Road<br> Vadapalani, Chennai - 600 026,<br> TamilNadu, India<br> <br> Phone No : +91 44 5550 5266<br> __ ____ ____ ____ ______<br> <br> <br> <br> <br> > -- --Original Message-- --<br> > From: A mailing list for Java(tm) 2 Platform, Enterprise Edition<br> > [SMTP:J2EE-INTEREST@(protected)] On Behalf Of<br> > Sonali_Kansara/BLR/TCS%TCS@(protected)<br> > Sent: Tuesday, July 20, 2004 1:02 PM<br> > To: J2EE-INTEREST@(protected)<br> > Subject: Browser preference to be changed<br> ><br> ><br> > Hello,<br> > My current application (consisting of framesets ) prompts a<br> > confirmation (The browser is trying to close the window ....Do you<br> > want to close it ? ) when I try to close the window . I want to<br> > suppress this browser message . How do I go about doin this , can I<br> > set properties of the Navigator object ? .........How ?<br> ><br> > Please assist me<br> ><br> > Thanks in advance<br> ><br> > Regards,<br> > Sonali << File: InterScan_Disclaimer.txt >><br> <br> ===========================================================================<br> To unsubscribe, send email to listserv@(protected) and include in the body<br> of the message "signoff J2EE-INTEREST". For general help, send email to<br> listserv@(protected) and include in the body of the message "help". <br> **************************************************************************<br> This email (including any attachments) is intended for the sole use of the<br> intended recipient/s and may contain material that is CONFIDENTIAL AND<br> PRIVATE COMPANY INFORMATION. Any review or reliance by others or copying or<br> distribution or forwarding of any or all of the contents in this message is<br> STRICTLY PROHIBITED. If you are not the intended recipient, please contact<br> the sender by email and delete all copies; your cooperation in this regard<br> is appreciated.<br> **************************************************************************<br> <br> ===========================================================================<br> To unsubscribe, send email to listserv@(protected) and include in the body<br> of the message "signoff J2EE-INTEREST". For general help, send email to<br> listserv@(protected) and include in the body of the message "help". <br> </tt></font> <br><font size=2 color=white face="sans-serif">ForwardSourceID:NT00000F46 </font> <br> =========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help". <p>
|
|