Posts: 21
Threads: 7
Joined: Feb 2011
Reputation:
0
02-14-2011, 07:44 AM
whatis throw object?
i have researched and found that it belongs to jscript
anyone know anything about throe obejct in vbscript if it exist
thank u
priya
Posts: 45
Threads: 13
Joined: Aug 2009
Reputation:
0
02-14-2011, 06:07 PM
hi priya,
As far as i know, there is no thro object in VBScript.
In java throw object is used to throw an error.
In vbScript we use the
on error resume next ' to enable error handling
if err.number <> 0 ' indicating an error has come up
---
----
on error goto 0 ' to disable error handling.
Posts: 21
Threads: 7
Joined: Feb 2011
Reputation:
0
02-25-2011, 07:46 AM
Thats what i thought
thank u so much for the reply