VBS Tutorial: Method-clear Method _vbs

Source: Internet
Author: User

Clear method

Clears all property settings for the Err object.

object.Clear

object should be the name of the Err object.

Description

Use clear to explicitly purge the Err object after an error has been processed. This is necessary, for example, when using On Error Resume Next to delay fault handling. When you execute the following statement at any time, VBScript automatically calls the Clear method:

  • On Error Resume Next
  • Exit Sub
  • Exit Function

The following example illustrates how to use the Clear method.

  ' An error continues to the next Err.Raise 6 ' overflow error. MsgBox ("Error # " & CStr(Err.Number) & " " & Err.Description) Err.Clear '  clears the error.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.