I have a combo box with 6 different options (opt1 ,opt2, opt3 etc). When the form first loads it asks a question and gives them a choice of answers (ans1, ans2) If they choose ans1 i want the drop down box to default to opt6, if they choose ans2 i want it to load normally. I thought i could just do this in the load section
thanks for any help
Code:
if (ans1 = true) then cbo1 = opt6 end if
Comment