Yehuda, this isn't working for me. I am unable to chnage my mind after i make a selection in the first combo box (unless I close the form and start over). Here is my code (mega is first combo, major is second based on the choice of Mega)
--------------------------------------------
Private Sub cbMega_Name_Click()
Dim lngCount As Long
For lngCount = 0 To cbMega_Name.ListCount - 1
cbMega_Name.RemoveItem (0)
Next
End Sub
---------------------------------------
my e-mail:
-----------------------------
Quote:
quote:Originally posted by Yehuda
Dim lngCount as long
For lngCount = 0 To ComboBox1.listCount - 1
ComboBox1.RemoveItem(0)
Next
|