I have a combo box on an Order Entry Form I designed that allows me to select from a dropdown of Company Names from a table entitled tblCustomers. The row source for this control is:
SELECT CustomerID, CompanyName FROM tblCustomers;
The bound column is 1 so that I can store the CustomerID in the underlying tblOrders table.
My question is:
I would like a text box on the form that displays the SalesPerson (which is also in the tblCustomers table) associated with the Customer chosen in the combo box.