I have an order form and cboContacts is empty after making a selection in cboCustomer. I am using the following code to link from cboCustomer:
SELECT contacts.contactid, contacts.contactname FROM contacts WHERE (((contacts.customerid)=forms!tblorders!cbocustomer)) ORDER BY contacts.contactname;
I have already entered form_current code: me.cbocontacts.enabled=false
cboCustomer_afterUpdate:
me.cbocontacts.enabled = true
me.cbocontacts.requery
Thanks for your help! Heather
SELECT contacts.contactid, contacts.contactname FROM contacts WHERE (((contacts.customerid)=forms!tblorders!cbocustomer)) ORDER BY contacts.contactname;
I have already entered form_current code: me.cbocontacts.enabled=false
cboCustomer_afterUpdate:
me.cbocontacts.enabled = true
me.cbocontacts.requery
Thanks for your help! Heather