#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include<ie.au3>
#Include <Clipboard.au3>
#Include <ScreenCapture.au3>
#Region ### START Koda GUI section ### Form=
Local $Form1 = GUICreate("test", 682, 572)
Local $oIE = _IECreateEmbedded()
Local $GUIActiveX = GUICtrlCreateObj($oIE, -80, -120, @DesktopWidth-100,@DesktopHeight-200)
_IENavigate($oIE, "http://news.china.com.cn/live/2012-09/09/content_16118789.htm",0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
Local $nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|