drop-down list with keyboard instead of mouse

B

Bob Richardson

When typing info into a data field with a drop-down list on a form, is there
a way VIA SOME KEYSTROKE(S) to make the drop-down list appear? The only way
I know to have the list appear is to use a mouse, but it would be much
easier for the data entry person if hands could be kept on the keyboard. Is
there a way?
 
F

fredg

When typing info into a data field with a drop-down list on a form, is there
a way VIA SOME KEYSTROKE(S) to make the drop-down list appear? The only way
I know to have the list appear is to use a mouse, but it would be much
easier for the data entry person if hands could be kept on the keyboard. Is
there a way?

Why not just have the combo drop-down as soon as the user tabs into
it.
Code the Combo Enter event:
Me![ComboName].Dropdown
 
B

Bob Richardson

Thank you both Jeff and Fred.

For my needs, I think it's even better to use the dropdown on the KeyDown
event. Thanks for the idea.

fredg said:
When typing info into a data field with a drop-down list on a form, is
there
a way VIA SOME KEYSTROKE(S) to make the drop-down list appear? The only
way
I know to have the list appear is to use a mouse, but it would be much
easier for the data entry person if hands could be kept on the keyboard.
Is
there a way?

Why not just have the combo drop-down as soon as the user tabs into
it.
Code the Combo Enter event:
Me![ComboName].Dropdown
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top