Populate combo box with one line of code
Populate combo box with one line of code
Rate Populate combo box with one line of code
(1(1 Vote))
'to add a list to the combo box
Private Sub Form_Load()
Combo1.AddItem "Apple"
Combo1.AddItem "Banana"
Combo1.AddItem "Grapes"
End Sub
'populate combobox
Private Sub Combo1_GotFocus()
SendKeys "{F4}"
End Sub
Populate combo box with one line of code Comments
No comments yet — be the first to post one!
Post a Comment