I have a statement that I am using two NOT operators.

can this be simplified using a 'andalso'?


VB Code:
  1. If Not rs.BOF And Not rs.EOF Then

VB Code:
  1. If Not rs.BOF AndAlso rs.EOF Then