-
I'm creating a web browser for a small company (they went some special things on it) and I'm wondering which event it is on a combo box which runs when you drop it down, and select something. Say, in netscape or IE you drop down the URL bar and select one of the addresses you've visited previously... what runs when you do that? It's a bit annoying that something so simple is holding me up :)
-
The Click Event i believe
-
Ok, thanks... I thought I'd already tried that, but will do so again, I might have done something else.
-
Code:
Private Sub Combo1_Click()
MsgBox "You clicked: " & Combo1.Text
End Sub
-
I believe it's DropDown event...
Code:
Private Sub Combo1_DropDown()
Combo1.AddItem "DropDown"
End Sub