cbo_Office is a drop down combo box on a data entry form. Its property sheet looks like this (I think I got all the pertinent info)
Rowsource = SELECT DISTINCT Primary.Office, Primary.Room FROM Primary ORDER BY Primary.Office;
Control Source = Office
Bound Column = 1
Limit to List = No
Allow Value List Edits = Yes
Auto Expand = Yes
Column Count = 2
Column Widths 1";0"
I am trying to type the primary district's name into the combo box and it only recognizes the first letter. Thus if I want to go to District "Central", when I type C it goes to the first record starting with "C"; however, when I type the next letter "E" it goes to the first record starting with "E" rather then "CE"
Am I missing something here or is it that it simply can't be done in Access 2007.