CodePudding user response:
In the absence of a scroll bar, can I try this code below,Form on a button, a comboBox a lable
Private Sub ComboBox1_MouseMove (ByVal Button As an Integer, ByVal Shift As an Integer, ByVal X As Single, ByVal Y As Single)
On the Error Resume Next
Me. Label1. Caption=Me.Com boBox1. List (Int (Y/Me.Com boBox1. The Font. The Size))
End Sub
Private Sub CommandButton1_Click ()
Dim As Integer I
For I=1 To 10
Me.Com boBox1. AddItem "item" & amp; I
Next
End Sub