good day
I have successfully (Thanks to much help from stackoverflow) sync'd two combo-boxes on a form.
NEW PROBLEM...
I created a from, with a sub-form. The one combo-box(A) is in the form, while the other(B) is in a sub-from. (combo 'B' must be limited to combo 'A')
ie..(it works when both combo-boxes are on the form, but when the one(combo 'B') is in the sub-form, an err occurs
Query code:
SELECT products.Product_Name FROM Table1 INNER JOIN products ON Table1.Suppliers_of_Customer=products.Company_Name WHERE (((Table1.Suppliers_of_Customer)=[Forms]![Form1].[A]));
Macro code for COMBO 'A':
ACTION Requery
ARGUMENTS B
ACTION SetValue
ARGUMENTS [B], nz(DMin("Product_Name","Query1"),"")
What do i do? Thanks...