win7中如何获取IE弹出窗口模式网页对象?
要获取已打开的IE网页(弹出窗口)对象在XP中可以用:
oshell=createobject("shell.application")
ow=oshell.windows()
for i=0 to (ow.count-1)
if ("IEXPLORE.EXE" $ UPPER(ow.item(i).fullname))
=messagebox("网页已打开!")
exit
endif
endfor
但在WIN7中不行,怎么办?
[此贴子已经被作者于2017-7-11 12:53编辑过]