Sure, Resize it to any height that you like. Here's an example that makes it 320 pixels high. Note that the combobox is smart; internally it limits the height so that you can never show a dropdown that could show more than the maximum number of items the combo is holding. The following assumes that you have a form with a combobox and a command button
[tt]
Private Declare Function MoveWindow Lib "user32" (ByVal hwnd As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal bRepaint As Long) As Long
Private Sub Command1_Click()
Form1.ScaleMode = vbPixels
MoveWindow Combo1.hwnd, Combo1.Left, Combo1.Top, Combo1.Width, 320, True
End Sub