J JezB May 12, 2005 #1 How can I cause a combo box to automatically drop down its list of values when the user moves the mouse over it ?
How can I cause a combo box to automatically drop down its list of values when the user moves the mouse over it ?
H Herfried K. Wagner [MVP] May 12, 2005 #2 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 ? Click to expand... \\\ 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 ///
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 ? Click to expand... \\\ 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 ///