Ted,
Sorry for coming in this late, but I don't quite understand your exact
question:
If you have no "order by" cluase, the question is meaningless, because then
there is no order in which you will get the records, so "scroll forward from
the selected record on" is quite meaningless.
If you do have an order (say, by PartNo), and you want to scroll forward from a
specific partno, you can use a query like:
select PartNo, xxx, … from MyTable where PartNo >= 125456 order by PartNo
If I misunderstood your question, could you please clarify what you need
exactly?
-Ronald-