I have an Access 2000 form. I have a combo box that allows me to select a manufacturer. Based on the manufacturer selection I only want to see the models associated with the mfg in a second combo box. I have a manufacturer table that contains mfg, mfg_id. My model table has model, mfg_id. I have entered a row source into my second combo box, but I do not get any results. here is the row source code.
SELECT model.model, model.mfg_id
FROM model
WHERE (((model.mfg_id)=[Forms]![MyForm]![cbomfg].[mfg_id]));
I have also placed an after_update code in the first combo box: mfg.requery
Can anyone tell me what I am doing wrong?
SELECT model.model, model.mfg_id
FROM model
WHERE (((model.mfg_id)=[Forms]![MyForm]![cbomfg].[mfg_id]));
I have also placed an after_update code in the first combo box: mfg.requery
Can anyone tell me what I am doing wrong?