It took me a while to figure that that you can say:
If var1 IsNot Nothing Then
...
End If
Instead of the awkward:
If Not var1 is Nothing Then
...
End If
Of course the IsNot is like the Is and will work with when comparing any two object references, not just for testing for Nothing.