Does a VB change trigger After_Update?

A

ABL

I have a bunch of combo boxes, each of which has an after_update event.
Changes in the first combo box need to trigger updates down the chain.

IF I requery combobox2 in combobox1_AfterUpdate, will that trigger
combobox2_AfterUpdate, or does AfterUpdate only get called from the form,
not from changes implemented in VB?

Thanks,
Alden


Please do not reply to this email address, as I do not check it, and it is
used to collect unsolicited email.
 
A

Allen Browne

No. If you alter a field programmatically, its events do not fire.

You can trigger the event proc programmatically by calling it, e.g.:
Call combobox2_AfterUpdate
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top