Do you want to position at that particular record in the RecordSet just to
read the fields or to update that fields?
If it is just for reading you can create a CRecordSet object for temporary
usage.
{
CRecordSet rTempSet;
rTempSet.Open(AFX_DB_USE_DEFAULT_TYPE,"Select * from Table where Field =
"Name" ");
// Use the record Set by calling GetFieldValue()
}
As far as I know there is no CRecordSet member function equivalent to Find
in CDaoRecordSet and you can implement your own Find function by deriving a
class from CRecordSet and using MoveNext() function or by executing a Filter
query.
Regards,
-Vijay
PP <p...@kordab.lt> wrote in message news:3752ADE1...@kordab.lt...