Combo Box in VBC

M

Marcia3641

Hi:
First I would like to say that this site is so helpful.

I have a combo-box created in VBC that ask the questions "Do you own a
home". There is a drop-down list that says "yes or no". What can I do to set
it up to where if they choose "no" another box would come up and they would
have a choice of "would you like be become a homeowner"?
 
B

bigwheel

Create your second box and set it up as hidden then when your user selects
"No", make it visible, set focus to it and check for a response before
allowing continuation
 
B

bigwheel

When the box is selected, you should be able to view it's properties one of
which will be Visible. Set that to False. Then in your code, you would have
something like:-

If comboxbox1.value = "No" then
comboxbox2.visible = True
End If
 
Top