Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to use Array of Array in QTP
#2
Not Solved
First of all to save some time not sure how much.

instead of

Code:
For intColumn = 0 To FieldsCount
ReDim Preserve arrColName(intColumn)

I would do

Code:
ReDim arrColName(FieldsCount)
For intColumn = 0 To FieldsCount

Second have arrColName(intColumn) as a string instead of a number.

So if I knew this was a number this is what I suggest doing, though I'm really not sure what you are trying to accomplish. Note, if this value happens to not be a number this will still fail.
Code:
arrRowVal( CInt(arrColName(intColumn)))= strColumnValue
Reply


Messages In This Thread
How to use Array of Array in QTP - by dineshb - 12-08-2009, 01:26 PM
RE: How to use Array of Array in QTP - by rdemers25 - 12-12-2009, 02:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  QTP/UFT - Storing Multiple Arrays In An Array Eitel13 0 1,653 07-17-2018, 04:37 PM
Last Post: Eitel13
  array to be captured and displayed Anu209 0 1,160 06-24-2017, 10:19 AM
Last Post: Anu209
  Unable to use array in QTP amit25007 2 3,173 01-25-2016, 05:10 PM
Last Post: amit25007
  Use WebEdit object as array sram3003 0 1,859 02-24-2015, 02:03 PM
Last Post: sram3003
  XML Data read and extract output in an array SweetyChowdhury 9 7,372 05-10-2013, 03:05 PM
Last Post: SweetyChowdhury

Forum Jump:


Users browsing this thread: 1 Guest(s)