Just mucking around with different properties within IE and this could be of some use to someone.

This sort of maximizes the screen.



Break On
Call 'D:\Kix\Functions\WMIQuery().kix'

$oIE = CreateObject("InternetExplorer.Application")
$oIE.Visible=0
$oIE.Navigate("http://www.myleague.com/wwpl")
; Wait for page to stop loading...
$oIE.Left = 0
$oIE.Top = 0
$oIE.Width = WMIQuery("HorizontalResolution","Win32_VideoConfiguration")[0]
$VerticalRes = WMIQuery('VerticalResolution','Win32_VideoConfiguration')[0]
$oIE.Height = Val($VerticalRes) - 27
Do 
Until $oIE.StatusText = "Done" 
$oIE.Visible=1
SetFocus("MyLeague.com*")
$oIE = 0