T
time_racer via AccessMonster.com
I have a form with multi radio options, combo boxes (disabled by default) and
a button, the user has to select one of those radio options which would
enable only one Combo Box and then their values ( the radio option and combo
box ) would be saved in the table
My question is how to use the if statement with with the radio option, I used
the below command but it returned this error " you enterned an expression
that has no value"
VB Code:
if isnull (me.option1 and me.option2 and me.option3) then
msgbox "please choose an option", vbOKonly
else
me.combo1.enable = true
endif
a button, the user has to select one of those radio options which would
enable only one Combo Box and then their values ( the radio option and combo
box ) would be saved in the table
My question is how to use the if statement with with the radio option, I used
the below command but it returned this error " you enterned an expression
that has no value"
VB Code:
if isnull (me.option1 and me.option2 and me.option3) then
msgbox "please choose an option", vbOKonly
else
me.combo1.enable = true
endif