If you use an autonumbering field and it is in the first column of the table, you could do something like ...
MsgBox rs.Fields(0)
It will give you the value of the first field of the first column (Fields(1) the second, Fields(2) the third, etc.) You would need to increment or decrement to get to wherever if you know where it is you are going.
Look up "Move" in Access Help (Recordset.Move method). It might be able to provide more information in that area.
-dK