Ben,
I assume you have an Order reference attribute in the Customer and the corresponding Customer reference in the Order.
I use the convention o_RefAttribute to signify Owns and ob_RefAttribute to signify Owned By
So in Customer
CustomerName
....
o_Orders
and in Order...
OrderNumber
....
ob_Customer
Then similarly in the Order to Order Lines
OrderLineItem
OrderLineQuantity
OrderLineRate
ob_Order
and Hence Orders becomes....
OrderNumber
....
ob_Customer
o_OrderLines
Therefore you should be able to reference a Customers Order Lines by
FIND OrderLine WHERE OrderLine.ob_Order.ob_Customer = "The Drop Down Combo Box Selected Customer"
This bypasses any direct reference, so to speak, to the Order.
However, though I haven't tried it, I would have thought you could have a combo to select the Customer and then filter to next Combo for Orders to only those WHERE Order.ob_Customer = Customer (Combo selected Customer)
And then the Query for Order Lines becomes
FIND OrderLines WHERE OrderLines.ob_Order = Order (the second select Combo of Order)
I may have missed your point .....?