knowledge76
Registered User.
- Local time
- Today, 11:58
- Joined
- Jan 20, 2005
- Messages
- 165
The problem arrises in then line " dsuser.Find criteria, 0, adSearchForward, 1 " and an error message is shown "Either BOF or EOF is True, or the current record has been deleted; the operation you ". I am just not getting the right idea o solve it. here is that piece of code.
Code:
rs.Open _
"Valid Users", _
conn, adOpenDynamic, adLockOptimistic
criteria = "[User] = """ & Forms![Login]!user & """"
' FindFirst implementation
rs.Find criteria, 0, adSearchForward, 1
If rs.EOF = False Then
If rs!password = Forms![Login]!password Then
loc_fname = rs![f_name]
..................
...............
.........
.....