Experts,
How can I move the record in an RDO Recordset object based on a given criterion? For example, say my recordset has four records with a field called "number" with values "one", "two", "three", and "four" respectively. I know I can say
rsMyRecordset.Move(2)
which will send it to the second record. But what if I wanted to do that based on what was in the "number" field. In other words, I'd say move(3) if the value in "number" is "three".
Can this be done?
Open in new window