![]() |
vb script for reverse of an array? - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners) +--- Thread: vb script for reverse of an array? (/Thread-vb-script-for-reverse-of-an-array) |
vb script for reverse of an array? - dipashri - 01-24-2014 How to write a vb script for reverse of an array(reversing an array)? RE: vb script for reverse of an array? - supputuri - 01-26-2014 below is the snippet which will give you the basic idea. Code: a = Array("a","b","c") RE: vb script for reverse of an array? - pranikgarg - 01-27-2014 Hi, Here is one more method: Code: Sub Reverse( ByRef myArray ) Try this... |