#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
$Form1 = GUICreate("test", 625, 443, 192, 124)
$Button1 = GUICtrlCreateButton("zeige url", 272, 384, 75, 25, $WS_GROUP)
$Group1 = GUICtrlCreateGroup("testbrowser", 24, 0, 577, 377)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)

$browser = _IECreateEmbedded()
GUICtrlCreateObj($browser, 30, 14, 564, 356)
_IENavigate($browser, "http://www.google.de/")

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1 ;Was kommt dahin

	EndSwitch
WEnd
