Hi all,
I am working in MS Access.
Is it possible to dropdown a combobox using the Down Arrow key when the Combo box has focus?
Thanks.
Printable View
Hi all,
I am working in MS Access.
Is it possible to dropdown a combobox using the Down Arrow key when the Combo box has focus?
Thanks.
Set the On Key Up event to [Event Procedure]. Here's the code:
:)VB Code:
Private Sub Combo0_KeyUp(KeyCode As Integer, Shift As Integer) ' Show dropdown on arrow down. If KeyCode = 40 Then Combo0.Dropdown End Sub
Thanks. That works!