If I have understood correctly, you are looking for alternative ways to find a record in a table using VFP.
In this case, instead of seek, try LOCATE (for serial search), or use an SQL statement with a WHERE clause for the desired record's record number ( RECNO() )
eg.
SELECT FROM myTable *...