Combo Box events

  • Thread starter Thread starter ajw
  • Start date Start date
A

ajw

I have a bound combo box on a form. I want to requery
some other combo boxes when the value bound combo box
changes as I progress through the record set. I have
tried afterupdate, on change and can not find an event
that fires when the value in the box changes as a result
of moving to the next record. Both events fire if I
manually change the selection.
Any Ideas?
Thanks
AJW
 
I have
tried afterupdate, on change and can not find an event
that fires when the value in the box changes as a result
of moving to the next record.

No combo box event fires in this circumstance; use the Form's Current
event instead.
 
Back
Top