这里面带的IE也是有错误的
例如论坛的里面,就不能运行
#include <ClipBoard.au3>
#include <GUIConstants.au3>
#include <IE.au3>
GUICreate("",300,700)
GUISetState()
$pic=GUICtrlCreatePic("",5,600,100,50)
$oIE=_IECreate("http://m.dangdang.com/register_email.php?sid")
$oImg = _IEImgGetCollection ($oIE,1)
$oPic = $oIE.Document.body.createControlRange()
$oPic.Add($oImg)
$oPic.Select()
$oPic.execCommand("Copy")
$img = ClipGet()
GUICtrlSetImage($pic,$img)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd |