Auto-dropdown ComboBox

  • Thread starter Thread starter JezB
  • Start date Start date
J

JezB

How can I cause a combo box to automatically drop down its list of values
when the user moves the mouse over it ?
 
JezB said:
How can I cause a combo box to automatically drop down its list of values
when the user moves the mouse over it ?

\\\
Private Sub ComboBox1_MouseEnter( _
ByVal sender As Object, _
ByVal e As EventArgs _
) Handles ComboBox1.MouseEnter
If Not Me.ComboBox1.DroppedDown Then
Me.ComboBox1.DroppedDown = True
End If
End Sub
///
 
Back
Top