为什么wscript找不到对象?
我在QTP脚本中想要实现与WR中一样的一个小功能,即设置弹出对话框的持续时间,时间到了自动消失,我用了WshShell的Popup脚本如下
Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Popup("密码为"&mima, 5,"msgbox",1+32)=-1
这个是最简单的,持续5秒种自动消失,不需其他情况.
但是总是出错,说WScript找不到对象,而我的脚本宿主本来就是WScript.exe
应该怎么办呢?需要安装什么东西吗?在哪下载? Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
call WshShell.Popup("dfdfd", 5,"msgbox",1+32) 原帖由 梦醒十分 于 2006-9-6 17:32 发表 http://bbs.51testing.com/images/common/back.gif
Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
call WshShell.Popup("dfdfd", 5,"msgbox",1+32)
为什么去掉WScript直接create 对象就ok了?楼上的能解释一下马 ?
页:
[1]