Click to See Complete Forum and Search --> : Full Screen IE
vbud
Jan 5th, 2004, 02:10 AM
Hi everybody
does anyone know how I can display my ASP pages in full screen mode in Internet Explorer?
All help appreciated
Thanx.
Memnoch1207
Jan 5th, 2004, 10:44 AM
what do you mean by "Full Screen Mode"???
I am assuming maximizing your browser isn't the answer you are looking for?
hellswraith
Jan 5th, 2004, 12:55 PM
I have the code/html at home. If you haven't gotten your answer by the time I get there, then I will post it.
hellswraith
Jan 5th, 2004, 10:20 PM
Use some javascript like this.. or a variation of it.
var height = window.screen.height;
var width = window.screen.width;
var dimensions = "height = " + eval(height + 10) + ", width = " + eval(width + 30);
mwindow = window.open("blank.htm", "mwindow", dimensions);
mwindow.document.open("text/html", "replace");
var i;
var timer = 0;
if(mwindow.moveTo)
mwindow.moveTo(-10, -30);
if(mwindow.resizeBy)
mwindow.resizeBy(0, 50);
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.