C
CW
I have a combo in which to select "DestCountry". There are about 20 of these.
Then there's another control that shows the "Price Band". That's also a combo
with 5 different values to choose from (1-5).
I wanted to code the AfterUpdate event on the DestCountry control, so that
the Price Band would be populated automatically.
As a first attempt, I used this:
If DestCountry = "Australia" Then
PriceBand = 5
End If
It doesn't work. I then tried having an ordinary text box for PriceBand
i.e. not a combo, and it worked fine. Is there something different I need to
do to get it to work on a combo, or is just not possible?
Many thanks
CW
Then there's another control that shows the "Price Band". That's also a combo
with 5 different values to choose from (1-5).
I wanted to code the AfterUpdate event on the DestCountry control, so that
the Price Band would be populated automatically.
As a first attempt, I used this:
If DestCountry = "Australia" Then
PriceBand = 5
End If
It doesn't work. I then tried having an ordinary text box for PriceBand
i.e. not a combo, and it worked fine. Is there something different I need to
do to get it to work on a combo, or is just not possible?
Many thanks
CW