Hi!
I have this code:
----------------------
Dim btn As Button
btn = Null
If btn = Null Then
Msgbox("btn is null", "")
Else
Msgbox("btn isn't null", "")
End If
----------------------
I hope to show "btn is null", but it shows "btn isn't null" really. What's wrong with this code?
I have this code:
----------------------
Dim btn As Button
btn = Null
If btn = Null Then
Msgbox("btn is null", "")
Else
Msgbox("btn isn't null", "")
End If
----------------------
I hope to show "btn is null", but it shows "btn isn't null" really. What's wrong with this code?