标题: err对象和wsh有什么区别,分别在什么时候用? [打印本页] 作者: FLY000 时间: 2010-3-22 10:18 标题: err对象和wsh有什么区别,分别在什么时候用? 我只知道err对象的使用情况是:Visual Basic, an Automation object, or the VBScript programmer 这些对象出现的错误,可以通过err对象获得。
--------------------
The Err object is an intrinsic object with global scope — there is no need to create an instance of it in your code. The properties of the Err object are set by the generator of an error — Visual Basic, an Automation object, or the VBScript programmer.
那么wsh 对象处理错误是用在哪些情况呢?
error resume next
这个语句是错误发生后,继续执行下面的代码的意思吗?作者: 17800455 时间: 2010-3-22 11:03
出现错误不会报错,会继续执行,
举例:
Option Explicit
'On error resume next
Dim ws
wis = 15
msgbox wis '应该提示变量未定义的,但是加上on error resume next 就不会有任何提示了,
当然也不会输出15