Hello
I have been using this form in the past and with it I have been able to produce combo boxes that are dynamic.
I’d like to take the combo box to another level and allow users to scroll through the results with the arrow keys. The only problem is that the field updates to the first item selected with the first down arrow key.
My abilities with visual basic is really minimal and I’d appreciate any help. This is the code I have for the combo box.
I have been using this form in the past and with it I have been able to produce combo boxes that are dynamic.
I’d like to take the combo box to another level and allow users to scroll through the results with the arrow keys. The only problem is that the field updates to the first item selected with the first down arrow key.
My abilities with visual basic is really minimal and I’d appreciate any help. This is the code I have for the combo box.
Code:
Private Sub ComboBox1_GotFocus()
ComboBox1.ListFillRange = "INGREDIENT1"
Me.ComboBox1.DropDown
End Sub