RE: FN-FORUM ultradev search/redirect problem
date posted 6th January 2001 13:38
Norman is right, test for BOF and/or EOF and act accordingly:
If RecordSet.BOF Then
XXX
Else
I *think* BOF marks a point before the start of the first record in the
record set, and EOF marks a point beyond the last record in the record set.
If the recordset (i.e. no matching user) is empty you will just get BOF.
Perhaps someone could clarify this.