I have a pop up search form that adjusts a list box query as users type.

The columns are: Person ID (Hidden), Person Name (obscured), Building, Phone (obscured)
When I type in a Building name the first 2 characters sort appropriately as seen in the pic above. However once I enter a third character this happens:

As you can see it continues to populate the list box except for the Peoples names. It is also filling in the Persons ID because the form is still usable (when I click go to record it still works)
Is there some sort of weird length limit going on?
Working Query Example (Two characters):
Code:
SELECT DISTINCTROW Directory.ID_Person, [txt_First Name] & ' ' & [txt_Last Name] AS Person, [txt_Building] & ' ' & [txt_Room Prefix] & [num_Room Number] & [txt_Room Suffix] AS Room, Phone.txt_Telephone AS Phone FROM ((People RIGHT JOIN Directory ON People.ID_Person = Directory.ID_Person) LEFT JOIN Phone ON Directory.ID_Phone = Phone.ID_Phone) LEFT JOIN Rooms ON Directory.ID_Room = Rooms.ID_Room WHERE ((([txt_Building] & ' ' & [txt_Room Prefix] & [num_Room Number] & [txt_Room Suffix]) Like '*da*') And ((Phone.txt_Telephone) Like '**')) ORDER BY People.[txt_Last Name], People.[txt_First Name], Rooms.[txt_Building], Rooms.[txt_Room Prefix], Rooms.[num_Room Number], Rooms.[txt_Room Suffix]
Not Working Query Exaple (two plus characters):
Code:
SELECT DISTINCTROW Directory.ID_Person, [txt_First Name] & ' ' & [txt_Last Name] AS Person, [txt_Building] & ' ' & [txt_Room Prefix] & [num_Room Number] & [txt_Room Suffix] AS Room, Phone.txt_Telephone AS Phone FROM ((People RIGHT JOIN Directory ON People.ID_Person = Directory.ID_Person) LEFT JOIN Phone ON Directory.ID_Phone = Phone.ID_Phone) LEFT JOIN Rooms ON Directory.ID_Room = Rooms.ID_Room WHERE ((([txt_Building] & ' ' & [txt_Room Prefix] & [num_Room Number] & [txt_Room Suffix]) Like '*dav*') And ((Phone.txt_Telephone) Like '**')) ORDER BY People.[txt_Last Name], People.[txt_First Name], Rooms.[txt_Building], Rooms.[txt_Room Prefix], Rooms.[num_Room Number], Rooms.[txt_Room Suffix]
This issue occurs if I paste the SQL text into a normal query as well.
Any ideas? Thanks
(edit: sp)