hey guys,
Not sure if this is something that can be done, but hopefully I can explain what it is I want to try.
Right now I have two combo boxes; "Make" and "Model".
depending on the value I select in "Make", the "Model" combo box displays only the items associated with that particular "Make". This works perfectly.
Now here's the monkey wrench. I have one specific customer, in which if this customer is who I am entering a record for, then the "Model" combo box would have a replacement set of values in its drop list.
So, in other words, for all customers but one, if I select Make = A, then my drop list for Models would show 1,2, or 3.
But if I am entering a record for this one specific customer, and put Make = A, then the dop list would change for Models, and it would show an alternate list of 4, 5, or 6.
Is that something that is possible?
Currently, the code for my dependent boxes are as follows:
Make - just runs a query listing all items from a table called IManufacturers.
Model - runs a query:
SELECT Models.StrModelName AS Expr1, Models.strNokiacode AS Expr3, Models.strCaresID AS Expr4, Models.LngManufacturerID AS Expr2
FROM Models
WHERE (((Models.LngManufacturerID)=[Forms]![Workorders]![cboManufacturer]))
ORDER BY Models.StrModelName;
Thanks for any help on this one guys!
Richard
Not sure if this is something that can be done, but hopefully I can explain what it is I want to try.
Right now I have two combo boxes; "Make" and "Model".
depending on the value I select in "Make", the "Model" combo box displays only the items associated with that particular "Make". This works perfectly.
Now here's the monkey wrench. I have one specific customer, in which if this customer is who I am entering a record for, then the "Model" combo box would have a replacement set of values in its drop list.
So, in other words, for all customers but one, if I select Make = A, then my drop list for Models would show 1,2, or 3.
But if I am entering a record for this one specific customer, and put Make = A, then the dop list would change for Models, and it would show an alternate list of 4, 5, or 6.
Is that something that is possible?
Currently, the code for my dependent boxes are as follows:
Make - just runs a query listing all items from a table called IManufacturers.
Model - runs a query:
SELECT Models.StrModelName AS Expr1, Models.strNokiacode AS Expr3, Models.strCaresID AS Expr4, Models.LngManufacturerID AS Expr2
FROM Models
WHERE (((Models.LngManufacturerID)=[Forms]![Workorders]![cboManufacturer]))
ORDER BY Models.StrModelName;
Thanks for any help on this one guys!
Richard