Reputation: 21
Where is the Position of cursor in recordset.EOF and recordset.BOF. Any explanation or link info is appreciated much.
Upvotes: 1
Views: 882
Reputation: 91376
If you are wondering why, for example, a loop has not exited with movenext when you hit the last record, it is not yet EOF, movenext again and you will hit EOF. The same, of course, applies for the other direction and BOF.
Upvotes: 1