tags:

views:

169

answers:

1

Hello there!

I have an object and within it I wanna check if some properties is set to false, like:

If (not objresult.EOF) Then 'Some code End if

but somehow, sometimes objresult.EOF is Empty, and how can I check it? IsEmpty function is for excel cells only objresult.EOF Is Nothing - return Empty objresult.EOF <> null - return Empty as well!

+1  A: 

How you test depends on the Property's DataType:

| Type                                 | Test                            | Test2
| Numeric (Long, Integer, Double etc.) | If obj.Property = 0 Then        | 
| Boolen (True/False)                  | If Not obj.Property Then        | If obj.Property = False Then
| Object                               | Is obj.Property Is Nothing Then |
| String                               | If obj.Property = "" Then       | If LenB(obj.Property) = 0 Then
| Variant                              | If obj.Property = Empty Then    |

You can tell the DataType by pressing F2 to launch the Object Browser and looking up the Object. Another way would be to just use the TypeName function:MsgBox TypeName(obj.Property)

Oorang