B
bhipwell via AccessMonster.com
This is driving me nuts...
I have a number of combo boxes on a form. I would like the user to click a
button to determine if there are any combo boxes which need to be completed,
are completed. For the on click event I have used...
If IsNull(me.combo1) then
But when the combo box is empty, this code doesn't work. So, I figured there
must be a zero value string in there and I tried...
If Len(me.combo1 & "") = 0 then
and tried...
If Len(me.combo1) = 0 then
But same thing, the code passes right by the combo field. Help! Some of the
code works for some of the combo boxes in the code using IsNull. But for
others combo boxes the code is checking, it is not. Thoughts!?
BH
I have a number of combo boxes on a form. I would like the user to click a
button to determine if there are any combo boxes which need to be completed,
are completed. For the on click event I have used...
If IsNull(me.combo1) then
But when the combo box is empty, this code doesn't work. So, I figured there
must be a zero value string in there and I tried...
If Len(me.combo1 & "") = 0 then
and tried...
If Len(me.combo1) = 0 then
But same thing, the code passes right by the combo field. Help! Some of the
code works for some of the combo boxes in the code using IsNull. But for
others combo boxes the code is checking, it is not. Thoughts!?
BH