82809085 发表于 2012-5-29 00:15:33

IE新窗口激活的问题呢

;~ #NoTrayIcon
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <IE.au3>


SETUP()

Func SETUP()
      _IEErrorHandlerRegister()
      Local $oIE = _IECreateEmbedded(), $oIE1 = _IECreateEmbedded()
      GUICreate("xxxxx", 900, 300, -1, -1)
      GUICtrlCreateObj($oIE, 0, 0, 400, 300)
      GUISetState()
      _IENavigate($oIE, "http://xy2.163.com/")
      MsgBox(64, "求高手指教", "点击后如何从右边窗口显示出来 不要弹出网站来")
      ControlClick("xxxxx", "", "Internet Explorer_Server1", "left", 1, 66, 98)

      GUICtrlCreateObj($oIE1, 450, 0, 400, 300)
      _IENavigate($oIE1, "http://xy2.163.com/")
EndFunc   ;==>SETUP

82809085 发表于 2012-5-29 00:19:51

IE事件的问题 点击IE后新窗口如何激活到右边的GUI界面

xz00311 发表于 2012-5-29 08:28:40

这个看看能不能判断另外一个网页的标题或者其他之类的
页: [1]
查看完整版本: IE新窗口激活的问题呢