Drop-down combo boxes by default drop down when you press the F4 key. However,
not many users know this, and you can make a combo box easier to
use by making it drop down in response to the down arrow key instead.
Start a new project and add a module. Then add the following code to the module:
Private Declare Function SendMessageLong Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Private Const CB_GETEXTENDEDUI = &H156
Private Const CB_SETEXTENDEDUI = &H155
Public Property Let ComboExtendedUI(ByRef cboThis As ComboBox, ByVal bState As Boolean)
    ' Set whether combo box drops down using the Down Arrow or not:
    SendMessageLong cboThis.hwnd, CB_SETEXTENDEDUI, Abs(bState), 0
End Property
Public Property Get ComboExtendedUI(ByRef cboThis As ComboBox) As Boolean
    ' Get whether combo box drops down using the Down Arrow or not:
    ComboExtendedUI = (SendMessageLong(cboThis.hwnd, CB_GETEXTENDEDUI, 0, 0) 0)
End Property
To try out a the function, add a Combo box and a Check box to your project's form. Then
add this code:
Private Sub Check1_Click()
   
    ' Toggle whether the Combo box will drop
   
    ' down when the down arrow is clicked or
   
    ' not:
    ComboExtendedUI(Combo1) = (Check1.Value = Checked)
End Sub
Private Sub Form_Load()
Dim i As Long
   
    ' Add some test items:
    For i = 1 To 20
        Combo1.AddItem "Test Item " & i
    Next i
End Sub
Start the project. When the project runs, you have to use to F4 box to make the combo box
drop down. When you check the combo box, the down arrow key drops the box down instead.
|