Hey I'm trying to check if a variable has a value assigned or not.

Dim var as Integer

If var=Null then
...
else
...
end if

But it seems that Null doesn't exist, and 'Nothing' isn't quite the same as for an integer Nothing=0.

Any ideas? thanks.