G
ghetto_banjo
in VBA, i have an if statement checking to see if a text box is empty,
if it is i want to display a msgbox. seemingly not working if I use
Is Null, = Null, or = "". No default value on the textbox.
if me.text5 = "" then.....
This simply calculates the if statement as False when the text box is
empty.
if me.text5 is Null then...
This results in a Run-Time Error 424 Object Required on that line.
if me.text5 = Null then...
this once agains calculates if statement as False
what am i not seeing here....
if it is i want to display a msgbox. seemingly not working if I use
Is Null, = Null, or = "". No default value on the textbox.
if me.text5 = "" then.....
This simply calculates the if statement as False when the text box is
empty.
if me.text5 is Null then...
This results in a Run-Time Error 424 Object Required on that line.
if me.text5 = Null then...
this once agains calculates if statement as False
what am i not seeing here....