I have an object and within it I want to check if some properties are set to False, like:
If (Not objresult.EOF) Then
  'Some code 
End if
But sometimes, objresult.EOF is Empty; how can I check for this?
- IsEmptyfunction is for excel cells only
- objresult.EOF Is Nothing- returns- Empty
- objresult.EOF <> null- returns- Emptyas well!
 
     
     
     
     
     
    