on Error GOto label
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2021
05:23 AM
02-16-2021
05:23 AM
on Error GOto label
The 3 Error Handling States in Visual Basic are :
- On Error Goto 0: works in test complete
- On Error Resume: works in test complete
- On Error Goto [label]: Doesn't work in test complete ??????
My question is :
Why On Error Goto [label] doesn't work in test complete?
Thanks
Ismail
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2021
05:34 AM
02-16-2021
05:34 AM
TestComplete uses VBScript (not Visual Basic or VBA). VBScript only supports "On Error Resume Next" and "On Error Goto 0". See https://ss64.com/vb/onerror.html for details.
Helen Kosova
SmartBear Documentation Team Lead
________________________
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2021
02:56 AM
02-18-2021
02:56 AM
Thanks, it is clear now :).
