I have used the _IEproperty to view via msgbox that the title is correct on both the ie page and the gui..
$name = "Win1" $width = 500 $height = 250 $left = 20 $top = 10 $hGUI = GUICreate($name, $width, $height, $left, $top, BitOR($WS_EX_TOPMOST, $WS_SIZEBOX, $WS_MINIMIZEBOX, $WS_MAXIMIZEBOX, $WS_BORDER), $WS_EX_COMPOSITED) $oIE1 = ObjCreate("Shell.Explorer.2") $Obj_ctrl = GUICtrlCreateObj($oIE1, 2, 2, $width-10, $height-10) GUICtrlSetResizing($Obj1_ctrl, 0x0001) GUISetState(@SW_SHOW) WinSetState("Win1", "", @SW_MAXIMIZE) WinActivate("Win1")





