Use arrow key in drop-down list

imdl

Registered User.
Local time
Yesterday, 22:04
Joined
Feb 2, 2010
Messages
27
Hi,

I have a form with multiple drop-down lists. Currently, when I go to each field, I still to use the mouse to click the "inverted triangle" to show the options in the list. I would like to just use the the arrow down key (instead of the mouse) to show the list. How do I go about that?

imdl
 
Try the following code in the Combo's On Key Down event;
Code:
    If KeyCode = 40 Then
        Me.Combo1.Dropdown
    End If
 
thanks, John. it works. :)

imdl
 

Users who are viewing this thread

Back
Top Bottom