Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove case-sensitivity from my combo box's autocomplete (Access form)

I've built a data entry form in access. One of the fields [Operator] comes from a combo-box of operator names, such as "Jane Doe". The people who enter the data typically keep caps lock on for other elements of the form, and so when they get to the [Operator] field as they start typing, the autocomplete will do the following:

User types: J
Autocomplete: Jane Doe

User types: JA
Autocomplete: Jane Doe

User types: JAN
Autocomplete: JaNne Doe

So, if there are 2 operators with similar first names and the user needs to type more than 2 letters of the name, autocomplete gets caught up on the case-sensitivity and burdens the user.

The simplest solution I've found so far is to convert all the names to all caps, but is there a way to make autocomplete work regardless of case?

like image 355
Ty.Yorke Avatar asked Aug 08 '12 18:08

Ty.Yorke


1 Answers

Change the Allow Autocorrect option to No.

What is happening is that the Autocorrect for two initial capitals is cutting in at A and the combo is losing the text selection, so when N is typed, it is inserted, not over-typed.

like image 96
Fionnuala Avatar answered Oct 09 '22 14:10

Fionnuala