I think I get his point. First, let's assume a query that returns records sorted on a unique field to prevent possible duplicates. He wants to return a specific number of records starting from a record number that is in a specific location of a sorted query. For instance, "TOP 10" would return only the top 10 records. In pseudo code, let's replace "TOP 10" with "1 THROUGH 10". He wants to return the records from a specific place in the query, say, record 11, and return 10 records in total, so the pseudo code would be "11 THROUGH 20".
Is that the right track? What you would need is to find a numbering query, or a query that creates a field that shows a counting number, ie the top record in the sort order would reflect a value of 1, the second record 2, and so on. Then your query condition would show the range in the Condition box. If you wanted 10 records starting at record 11, then the condition box of the counting field would show ">=11 and <=20" or something similar to that.
Hope that helps. If you need an autonumbering query, search the forum.