Hi
How are your tables set up? I presume you have a 'make' table and a 'model' table, and you have an ID number for each make and model.
tblMake tblModel
'Make' MakeID 'Model' ModelID
Ford 1 Galaxy 1
Citroen 2 AX 2
KA 3
So you have unique reference numbers for each make and model. For instance Ford make both the Galaxy and Ka models, so you have a table linking the ID numbers together.
tblLinkMakeModel
MakeID ModelID
1 1
1 3
Then create a query qryJoinMakeModel, and add the above tables to it and choose the fields you wnat (make, model, ModelID, MakeID).
In your second combo box (if the first combo is make) you look for model. In the RowSource (under 'properties') add a sql statement which makes your second combo only look for the relevant model. Ie.
SELECT qryJoinJoinMakeModel.Make, qryJoinJoinMakeModel.Model, qryJoinJoinMakeModel.MakeID, qryJoinJoinMakeModel.ModelID FROM qryJoinJoinMakeModel WHERE (((qryJoinJoinMakeModel.Make)=[forms]![frmWhatever]![cmboMake])) ORDER BY qryJoinJoinMakeModel.Model;
Just replace the table, query and field names with your own.
I hope this makes sense, and is what you wanted (and that my SQL is correct!!!), if not, post back.
