preload

Service Functions – Math (QTP, VBScript)

Posted by Albert Gareev on Jan 20, 2008
0
In the code examples I present I often refer to routine functions. In my framework I have specialized libraries to call from.  In my blog I maintain the similar structure.  Array Functions  Sort Data Array Sort Typed Data Array Check Array Type Check Item in Array Convert Array to Set Set Functions Convert Set to Array [...] ...

QTP Math functions – TypedArraySort

Posted by Albert Gareev on Jan 14, 2008
0
Parent page: Service Functions – Math (QTP, VBScript) Description Sorts one-dimentional array in ascending / descending order with typecasting.  Implementation Public Function TypedArraySort(ByRef dvArray, ByVal sFormat, ByVal boolAscending)   Dim Iter, Jter, aValue, boolRC     If Not isArray(dvArray) Then     dvArray = Array(dvArray)     ArraySort = dvArray   End If   sFormat = UCase(sFormat) [...] ...

QTP Math functions – ArraySort

Posted by Albert Gareev on Jan 12, 2008
0
Parent page: Service Functions – Math (QTP, VBScript) Description Sorts one-dimentional array in ascending / descending order.  Implementation Public Function ArraySort(ByRef dvArray, ByVal boolAscending)   Dim Iter, Jter, aValue     If Not isArray(dvArray) Then     dvArray = Array(dvArray)     ArraySort = dvArray   End If  For Jter = 0 To UBound(dvArray)   For Iter = [...] ...

Link-a-log: Testing Communities

Posted by Albert Gareev on Jan 10, 2008
0
Software Testing Club Test Republic ...
Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported
This work by Albert Gareev is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported.