How do you check if a textbox is empty?

habbabub

Registered User.
Local time
Yesterday, 16:14
Joined
Jan 24, 2008
Messages
73
How do you check if a textbox is empty?

thanks
 
If IsNull(me.textBox)

Or, possibly... If me.textBox = ""
 
And here's one that will catch all:

If Nz(Me.TextBox,"") & "" <> "" Then ...
 

Users who are viewing this thread

Back
Top Bottom