CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2002
    Location
    UK
    Posts
    20

    Open window browser full screen

    Does anyone know how to open a window browser full screen in IE?
    I am using window.open(myWebpage.htm)
    I can open the page but cannot maximise the page automatically..
    What parameters can I specify?

    Any idea?

    Thanks

  2. #2
    Join Date
    Mar 2003
    Posts
    4
    Ah... had the same problem 3 weeks ago. Got it working now.

    Not sure if it's efficient code, but it works. (In IE only though).


    I got a starter page with this function.

    ----------
    function Custom_openBrWindow() {
    window.open('index.asp','Appwindow','fullscreen=yes');
    Appwindow.focus();
    }
    ----------


    Then, in the new window that is opened I got a function that is called by the onLoad event.

    ------------
    function WindowSetup() {
    document.body.style.overflow='hidden';
    window.focus();
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured