I have a single select list box (Access 2003) that is not behaving the way I want it to.
This is what my list box does now:
User types "Do"
List box goes to the first item in the list begining with "D"
Then it goes to the first item in the list begining with "O"
This is what I want my list box to do:
User types "Do"
List box goes to the first item in the list begining with "Do"
Calling all Access World geniuses, Is this possible?
Further rambling explanation for anyone who is not bored yet:
I have seen the samples where you put a text box on your form, and type what you are looking for in there, and then it filters the list based on what you type. But I don't want a separate box and I don't want to filter the list, I just want to highlight the item as the user types while the focus is on the list box.
The reason I don't want to do it the other way is because the user needs to be able to scroll up and down the list box using the arrow keys, and to pick their final selection by hitting the enter or tab key (captured in the key down event of the list box). If the focus is instead on a separate text box, then the user will have to go to the mouse to get between the separate text box and the list box, which defeats the whole purpose.
This is what my list box does now:
User types "Do"
List box goes to the first item in the list begining with "D"
Then it goes to the first item in the list begining with "O"
This is what I want my list box to do:
User types "Do"
List box goes to the first item in the list begining with "Do"
Calling all Access World geniuses, Is this possible?
Further rambling explanation for anyone who is not bored yet:
I have seen the samples where you put a text box on your form, and type what you are looking for in there, and then it filters the list based on what you type. But I don't want a separate box and I don't want to filter the list, I just want to highlight the item as the user types while the focus is on the list box.
The reason I don't want to do it the other way is because the user needs to be able to scroll up and down the list box using the arrow keys, and to pick their final selection by hitting the enter or tab key (captured in the key down event of the list box). If the focus is instead on a separate text box, then the user will have to go to the mouse to get between the separate text box and the list box, which defeats the whole purpose.