
Originally Posted by
exbaitman
keviny04,
I got the multi-column combobox set up and it seems that will suffice. As a secondary option I have a button that opens a Customers subform in a separate tab. The downside is once you find the customer you have to go back to the original tab and type in the customer, rather than just double clicking on the correct customer.
You may add a "Select Customer" button above the customer subform. Clicking it takes the user back to the order entry form with the selected customer entered in the combo box. Here is a screenshot of what it may look like. You need VBA code for the button's OnClick event. It can be something like:
Code:
Private Sub SelectCustomerButton_Click()
Dim cust_no As Variant
' Get selected customer from subform
cust_no = Me![Customer subform].Form!cust_no
' Put selected customer in combo box
Me!customer_combobox = cust_no
' Set focus on combo box
Me!customer_combobox.SetFocus
End Sub

Originally Posted by
ItsMe
Many of my customer Combos display the Name, City, and State. This usually suffices. If necessary, you can filter Combobox's Recordsets via another combo, etc.
The OP said he needed filtering in multiple fields such as city, street address, etc., and this would be better done with a subform (e.g. using datasheet's built-in filtering ability for all columns). Using only combo boxes, you would need multiple combo boxes to accomplish that, which would clutter up the form.