here is my problem.
i have two records. one containing 20 records and second containing 30 records.
now i want the recordcount property to use and go to the 21 record.
i m calculating the recordcount of both the record. now i m doing this
but its not going to 21 record but it is going to 22 nd record.
can anyone please help me wiith that . how i can go to the 21 record using recordcount .
i have two records. one containing 20 records and second containing 30 records.
now i want the recordcount property to use and go to the 21 record.
i m calculating the recordcount of both the record. now i m doing this
Code:
a = rs.recordcount b = rs1.recordcount for x = b+1 to a rs.move(x)
can anyone please help me wiith that . how i can go to the 21 record using recordcount .
Comment