
Originally Posted by
rpeare
It sounds to me like one of two things is happening:
1. Your client table does not have a primary key
2. If your client table DOES have a primary key you are not using that as the bound column of your combo box.
In order for a combo box to function as a search you must have a way to uniquely identify items in the list by a SINGLE field.
What you want to do is put the PK of your clients table (assuming you have one, autonumber field for instance) as the first column of your combo box, then you can concantenate the lastname, firstname as your second column
Clientname: LastName & ", " & firstname
then make the WIDTH of your first column 0 (the PK field) and the width of the second column as wide as you want (the clientname field)