hello and thank you for any help you can provide me.
I have a form with multiple combo boxes. Each combo gets populated according to the selection of the other combo.
I would like that when I select a specific record in combo1, combo 2 get's grayed out (locked) as an additional selection is not required.
I have tried with the following code in both the current event of the form and the After Update but it does not work:
If me.cbo1.value "Hello" Then
me.cbo2.enable = false
else
me.cbo2.enable = true
end if
Unfortunately does not work.
THank you
I have a form with multiple combo boxes. Each combo gets populated according to the selection of the other combo.
I would like that when I select a specific record in combo1, combo 2 get's grayed out (locked) as an additional selection is not required.
I have tried with the following code in both the current event of the form and the After Update but it does not work:
If me.cbo1.value "Hello" Then
me.cbo2.enable = false
else
me.cbo2.enable = true
end if
Unfortunately does not work.
THank you