IsEmpty( arrMyArray(i) ) is not recognised in journal

To all

I have a array defined and I want to check for empty elements in this array. Normally I used the IsEmpty() keyword but it's not recognised in journal. Could any one enlighten me on this one?

For i = 1 to 4
If IsEmpty(arrInputRow(i)) Then errorcounter = errorcounter + 1
Next

Thanks

Regards

JXB

Try using IsNothing() in place of IsEmpty().

Works a treat. thanks.
Regards

Thanks
Regards

IsEmpty is VB 6 jargon, I think. In VB.NET, you can write

If myThing.IsNothing() Then ...

or, alternatively

If myThing Is Nothing Then ...