Gasman
Enthusiastic Amateur
- Local time
- Today, 05:48
- Joined
- Sep 21, 2011
- Messages
- 16,610
Hi everyone,
In a lot of snippets of code I see
Where can you get a situation if no records are returned that one or the other is True?
I would have thought no records would set both, and from my little testing I have done, that appears to be the case, so why do people test for both please?
TIA
In a lot of snippets of code I see
Code:
If Not (rs.EOF And rs.BOF) Then
Where can you get a situation if no records are returned that one or the other is True?
I would have thought no records would set both, and from my little testing I have done, that appears to be the case, so why do people test for both please?
TIA