Hi! I am new to this forum and to MS Access.I am hoping someone can help me with this problem I have been struggling with all day.
I have a main form [Quote Details] with a subform [Quote Query].
The subform has the following cascading combo boxes which are bound to controls on the subform:
[cmbSupplier], [cmbProduct], and [cmbPattern]
[SupplierID] Rowsource = SELECT [Suppliers Query].ID, [Suppliers Query].Company FROM [Suppliers Query] ORDER BY [Suppliers Query].Company;
[ProductID] Rowsource = SELECT [Products Query].ID, [Products Query].[Product Name], [Products Query].[Supplier ID] FROM [Products Query] WHERE ((([Products Query].[ID])=[Forms]![Quote Details]![Quote Query]![cmbSupplier]));
PROBLEM: When I open the main form [Quote Details], it opens just fine with all the subform fields blank. I go to the subform, click on the [cmbSupplier] and select the supplier. When I press enter, a message box pops up Enter Parameter Value: Forms!Quote Details!Quote Query!cmbSupplier. If I enter the SupplierID in this box again, the cmbProduct populates correctly.
My question is: How do I stop this popup? I do not understand why it asks me for the parameter value when I just entered it.