Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

resizing browser window from code

Status
Not open for further replies.

mattbold

Programmer
Oct 5, 2001
45
GB
hi
a similar message to one i posted before but slightly different!:

is there a way i can use vbscript to resize the browser window that the page is being displayed in?? if there is, can someone tell me how please!??

cheers,
matt
 
Use this:
Code:
<body onload=&quot;resize();&quot;>
</body>
<script language=&quot;vbscript&quot;>
sub resize
        window.resizeTo	800,600
end sub
</script>
________
George, M
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top