本帖最后由 哈喽IT 于 2015-9-28 10:27 编辑
#include <GUIConstantsEx.au3>
#include <IE.au3>
GUICreate("XXX安装 ",400,200)
GUICtrlCreatePic("E:\123.jpg",0,0,400,200,0x08000000)
$X1=GUICtrlCreateButton("X1安装 ",10,50,100,100,0x0080) ;
GUICtrlSetBkColor(-1, 0x00ff00)
GUICtrlSetColor(-1, 0xff0000)
GUICtrlSetFont(-1, 20, 100, 0,"")
$exit=GUICtrlCreateButton("Exit",300,50,100,100,0x0080) ;退出按钮
GUICtrlSetBkColor(-1, 0x00ff00)
GUICtrlSetColor(-1, 0xff0000)
GUICtrlSetFont(-1, 20, 100, 0,"")
$IE=GUICtrlCreateButton("IE",150,50,100,100,0x0080) ;IE安装
GUICtrlSetBkColor(-1, 0x00ff00)
GUICtrlSetColor(-1, 0xff0000)
GUICtrlSetFont(-1, 20, 100, 0,"")
GUISetState(@SW_SHOW)
While 1
$Msg=GUIGetMsg()
Select
Case $msg=$X1
FileCopy("\\170.0.1.0\My$\123\xx.TTF","C:\WINDOWS\Fonts",1)
MsgBox(0,"xx "," ",2)
Case $msg=$IE
$oIE = _IECreate("http://xxxxxxx:xx")
_IELinkClickByText ($oIE, " ")
;问题出现在这个按钮上, 我打开网页以后点击网页上的一个安装按钮,安装完成一个控件以后,弹出一个登陆窗口,然后这个语句就不会结束了,导致GUI上的其他按钮实效,帮看下这个结束语句要怎么写啊啊
Case $msg=$exit
ExitLoop
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
EndSelect
WEnd |