Nov 15, 2001 #1 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
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
Nov 15, 2001 #2 shaddow Programmer Mar 22, 2001 1,862 RO Use this: Code: <body onload="resize();"> </body> <script language="vbscript"> sub resize window.resizeTo 800,600 end sub </script> ________ George, M Upvote 0 Downvote
Use this: Code: <body onload="resize();"> </body> <script language="vbscript"> sub resize window.resizeTo 800,600 end sub </script> ________ George, M