Null is never equal to anything, not even Null. Use the IsNull() function.
If IsNull(Me.textbox.Value) Then
If you want Me.textbox treated the same when it contains an empty string as when it's Null, concatenate an empty string to it and check the length of the combined string:
If Len(Me.textbox.Value & "") = 0 Then
You could also use the named constant, vbNullString, instead of the string literal, "", for an empty string.
If Len(Me.textbox.Value & vbNullString) = 0 Then
Using the string literal requires VBA to construct that string from scratch each time. With the named constant VBA only needs to reference it, so should be faster and use less memory. However in many (maybe most) cases, the performance advantage with vbNullString would be so minor that you wouldn't notice the difference. Also see the comment below from David Fenton.
For me, the more compelling reason to use vbNullString is that it's instantly recognizable to my aging eyes. Conversely, with the string literal, it takes (a tiny bit) longer for me to confirm that "" is not actually something else ... like " " or "'". The only downside with vbNullString, IMO, is that requires more typing than "".
And finally, I don't think you should actually need to explicitly reference the Value property because it's the default property of a text box. I left it in because you had it that way.
If IsNull(Me!textbox) Thenshould suffice (or, if you've bound the control to a field that allows the evil zero-length string, you would need to test the length of the control's value concatenated with an empty string,If Len(Me!textbox & vbNullString) = 0 Then-- but I'm just repeating what everybody else has said, absent the explicit .Value property. – David-W-Fenton Apr 19 '11 at 4:07