Arrow keys in a combo box

J

JAnderson1070

I know that once you 'click' into a combo box, you can use the arrows to move
the cursor. What I would like to do is if the user Tabs into the combo box,
is there a way he/she can immediately use the arrow keys instead of going to
the mouse first?

Thanks.
 
B

Brendan Reynolds

There are two built-in keyboard shortcuts to drop down the combo box - F4,
and Alt+Down Arrow.

If you want to drop down the combo box programmatically, you can use the
Dropdown method ...

Me!NameOfCombo.Dropdown
 
J

JAnderson1070

Thanks Brendan. That did the trick.

Brendan Reynolds said:
There are two built-in keyboard shortcuts to drop down the combo box - F4,
and Alt+Down Arrow.

If you want to drop down the combo box programmatically, you can use the
Dropdown method ...

Me!NameOfCombo.Dropdown
 
Top