06-12-2009, 11:58 PM
I am trying to loop just through the rows that have data in the local data table but the test keeps trying to run through all 65535 rows in the table.
The code to grab the number:
which sets the numRows variable to the 65535 instead of the three that should be set since the data table looks like:
Any Ideas? Is this a bug in the system?
(By the way, when I set the action run properties to run all rows it does the same thing. Tries to run through all 64k rows.)
Thanks,
Don
The code to grab the number:
Code:
Dim i, numRows, dtDepL, dtDepG
Set oLocalDT = DataTable.LocalSheet
numRows = oLocalDT.GetRowCount
which sets the numRows variable to the 65535 instead of the three that should be set since the data table looks like:
Any Ideas? Is this a bug in the system?
(By the way, when I set the action run properties to run all rows it does the same thing. Tries to run through all 64k rows.)
Thanks,
Don