2007-06-22
16:17:32
·
4 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design
I'm using it as a drop-down box.
2007-06-22
16:24:23 ·
update #1
Non-editable drop-down list I mean.
2007-06-22
16:25:32 ·
update #2
Private Sub form_load()
Combo1.AddItem "hi"
Combo1.AddItem "hi2"
Combo1.AddItem "hi3"
End Sub
Sub Combo1_Change()
Call MsgBox("changed")
End Sub
I want a command to fire once someone changes the selection in the drop-down list.
the Combo1_Click() sub doesn't fire when I change the selection I don't understant why.
2007-06-23
04:19:13 ·
update #3