I am quite a beginner in programming. I have some code to put in an Access module:
I don't know why VB don't go into this condition when it is true:
Dim Test1 as integer
Dim Test2 as integer
Test1 = Null
If Test1 = Null Then
Test2 = aValue
End if
It jump to End if. Is there an other way to write my condition. I really need to test a variable with Null value to do something else.
I don't know why VB don't go into this condition when it is true:
Dim Test1 as integer
Dim Test2 as integer
Test1 = Null
If Test1 = Null Then
Test2 = aValue
End if
It jump to End if. Is there an other way to write my condition. I really need to test a variable with Null value to do something else.