I have a form with an unbound control where the user can type a search criteria. Clicking a command button will refresh a combo box which is based on a query that uses the value from the control as search criteria.
The search criteria looks like this, <.. where RefNum Like [Forms]![frmMyForm01]![ctlCriteria01] & "*">.
Then I set up the same type of search in a different form. The query in this form is different from the previoous one although the search is performed on the same field.
The search in the first form returns all hits for the the search criteria regardless case. The second performs a case sensitive search. Why the difference? I have been searching all places for "binary" or "database" options without finding anything.
The search criteria looks like this, <.. where RefNum Like [Forms]![frmMyForm01]![ctlCriteria01] & "*">.
Then I set up the same type of search in a different form. The query in this form is different from the previoous one although the search is performed on the same field.
The search in the first form returns all hits for the the search criteria regardless case. The second performs a case sensitive search. Why the difference? I have been searching all places for "binary" or "database" options without finding anything.