Hi, I need some help with this, please
I have three tables
SUPPLIERS (1) >->->-> (many) PRODUCTS (1) >->->-> (many) STOCKTRANSACTIONS.
I use a query based on a search string to open frmSUPPLIER, filtered to the record I want. But now I want to have a child form based on the STOCKTRANSACTIONS table, because I want the user to be able to select only products from that supplier.
Option 1 was to have Main form > child form > grandchild form, but that forces me to have the child form set to single view (in order that it can have a child form itself)
But I really want a subform in continuous view like this:
--------------------
| Supplier ..............|
--------------------
| Productcombo.....|
| Productcombo.....|
| Productcombo.....|
--------------------
In effect this would be a parent > grandchild form, skipping the "middle generation". Is such a thing possible and how would I go about it?
The tables are linked as follows (TABLE.Fieldname):
SUPPLIERS.SupplierID >> PRODUCTS.Supplier >> STOCKTRANSACTIONS.Product
Very very grateful for assistance! Thank you.
I have three tables
SUPPLIERS (1) >->->-> (many) PRODUCTS (1) >->->-> (many) STOCKTRANSACTIONS.
I use a query based on a search string to open frmSUPPLIER, filtered to the record I want. But now I want to have a child form based on the STOCKTRANSACTIONS table, because I want the user to be able to select only products from that supplier.
Option 1 was to have Main form > child form > grandchild form, but that forces me to have the child form set to single view (in order that it can have a child form itself)
But I really want a subform in continuous view like this:
--------------------
| Supplier ..............|
--------------------
| Productcombo.....|
| Productcombo.....|
| Productcombo.....|
--------------------
In effect this would be a parent > grandchild form, skipping the "middle generation". Is such a thing possible and how would I go about it?
The tables are linked as follows (TABLE.Fieldname):
SUPPLIERS.SupplierID >> PRODUCTS.Supplier >> STOCKTRANSACTIONS.Product
Very very grateful for assistance! Thank you.