tonyabbs 当前离线
上等兵
9zhmke 当前离线
等待验证会员
TOP
Dim win,objshell 'Set ws=createobject("wscript.shell") Set win=CreateObject("InternetExplorer.Application") Set objshell=CreateObject("Shell.Application") For Each win In objshell.Windows If LCase(Right(win.fullName,12))="iexplore.exe" Then msgbox win.LocationURL if win.LocationURL="about:blank" then end if End If Next Set Shell=Nothing复制代码
Set ws=createobject("wscript.shell") Dim IE,obj,i Set Shell=CreateObject("Shell.Application") For Each win In Shell.Windows If LCase(Right(win.fullName,12))="iexplore.exe" Then msgbox win.LocationURL if win.LocationURL="about:blank" then end if End If Next Set Shell=Nothing复制代码