Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • The parameter types supported by Qualitia QTP / UFT are String, integer, and Array.
  • Error Resume Next Statement

Add the On Error Resume Next statement at the beginning of the function and the On Error Goto 0 statement before the function end.

Info

For Example,

Function Test()

            On Error Resume Next          

            On Error Goto 0

     End Function

...