请问要让程序访问一个需要Cookies才能查看的资源怎么办?
本帖最后由 LiYi1987 于 2009-11-24 20:51 编辑我在帮助文件里找了好久没找到,我是新手,请高手赐教~~~谢谢咯
顺便问一下,能不能在AU3程序里面内建一个IE浏览器? 自己顶一下。。麻烦知道的朋友教一下咯 我也想知道如何做! #include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 192, 124)
$oIE = ObjCreate("Shell.Explorer.2")
$GUIActiveX= GUICtrlCreateObj( $oIE,0, 0, 600 , 400)
$oIE.navigate("http://www.baidu.com")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
IE的UDF中也有内置浏览器的实例的
页:
[1]