What I want to do is be able to use a combo box (or something like it) to pare down the drop-down list based on what I'm typing in the field, but instead of just being sensitive to whether the associated text begins with that text, is sensitive to whether that text is embedded anywhere within the string. To put it another way, the typing space in combo boxes react using: LIKE "string*" logic and I want it to use LIKE "*string*" logic.
Can this be done?