#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 618, 442)
$Group1 = GUICtrlCreateGroup("", 8, 0, 601, 433)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
_IEErrorHandlerRegister ()
$oIE = _IECreateEmbedded ()
GUICtrlCreateObj($oIE, 9, 6, 600, 426)
_IENavigate ($oIE, "http://www.d9v.org")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
如何在不影响正常浏览网页的情况下关闭弹窗? |