Type mismatch: 'Window'的问题
Msgbox shell_ReturnIEName_NEMPublic Function shell_ReturnIEName_NEM()
Set shell = CreateObject("Shell.Application")
set ie = createobject("internetexplorer.application")
Set shellWindows = shell.Windows()
For Each ie In shellWindows
If InStr(1,ie.FullName,"IEXPLORE.EXE",vbTextCompare) <> 0 then
shell_ReturnIEName_NEM = Window("hwnd:=" &ie.HWND).GetROProperty("Name")
End If
Next
Set shellWindows = Nothing
Set shell = Nothing
End Function
----------------------
上诉代码执行的时候,提示Type mismatch: 'Window'
之前我运行时候都是正确,假期回来后运行就发现提示这个问题
不知道什么原因,麻烦大家看看,赐教
谢谢 试了一下,没有出现错误。。不晓得
[ 本帖最后由 ermine 于 2009-10-8 12:16 编辑 ]
回复 2# 的帖子
。。。我之前运行也没有问题假后回来就出现这个问题
我到同事他们机子上面看也是一样的。。。。
在VBSEdit上面提示type mismatch
在qtp里面运行提示Cannot identify the object "[ Window ]" (of class Window). Verify that this object's properties match an object currently displayed in your application.......
[ 本帖最后由 kevin_swpi 于 2009-10-8 14:41 编辑 ] VBSEdit 应该不行的,Window("hwnd:=" &ie.HWND).GetROProperty("Name")是QTP里的用法。
如果用QTP找不到window对象,debug取一下ie.HWND,再用spy看下存在的IE窗口的hwnd,看看是不是一样。我用的是10.0,是可以的~~ 找到原因了通过看进程发现IE在浏览器关闭后IE进程还存在
大家可以执行下下面两个进行比较
Set shell = CreateObject("Shell.Application")
set ie = createobject("internetexplorer.application")
Set shellWindows = shell.Windows()
msgbox shellWindows.count
Set shell = CreateObject("Shell.Application")
Set shellWindows = shell.Windows()
msgbox shellWindows.count
通过执行就会发现 一个是1一个是0
原来是这句话惹的话创建了一个ie对象
set ie = createobject("internetexplorer.application")
这句在执行的时候就会导致多了一个空的ie对象从而报错
shell_ReturnIEName_NEM = Window("hwnd:=" &ie.HWND).GetROProperty("Name")
呵呵 结贴!:lol 原帖由 ermine 于 2009-10-8 15:11 发表 http://bbs.51testing.com/images/common/back.gif
VBSEdit 应该不行的,Window("hwnd:=" &ie.HWND).GetROProperty("Name")是QTP里的用法。
顺便说一下这个说话应该不妥当吧 呵呵
页:
[1]