J
J Shrimps, Jr.
I can locate the record I'm looking
for with
Set rst = db.OpenRecordset("tblData;")
rst.FindFirst left("Code", 13) = Me.cmbLookup
but I need to know where this record lies -
i.e. what row number in the dataset.
This is a dymanically created linked
text file so it can't be indexed or updated.
rst.Cursorlocation doesn't seem to work
and if I place rst.AbsolutionPosition right
after the rst.FindFist - which correctly
identifies the record 'cause I've checked
with the debugger, I get 0 every time.
for with
Set rst = db.OpenRecordset("tblData;")
rst.FindFirst left("Code", 13) = Me.cmbLookup
but I need to know where this record lies -
i.e. what row number in the dataset.
This is a dymanically created linked
text file so it can't be indexed or updated.
rst.Cursorlocation doesn't seem to work
and if I place rst.AbsolutionPosition right
after the rst.FindFist - which correctly
identifies the record 'cause I've checked
with the debugger, I get 0 every time.