09-24-2009, 07:03 PM
Ok, thanks for the comment. I implemented a workaround to solve it:
in the library file (library.qlf):
in an action of a qtp test case:
It is a workaround just to solve the library limitation. Thanks Saket.
in the library file (library.qlf):
Code:
Public dinamicArray() 'define a global dinamic array
Public Function ReDimArray(ArrayName, num)
Execute "ReDim "&ArrayName&"("&num&")"
End Function
in an action of a qtp test case:
Code:
Call ReDimArray("dinamicArray",0)
Call ReDimArray("dinamicArray",1)
Call ReDimArray("dinamicArray",2)
It is a workaround just to solve the library limitation. Thanks Saket.