Hi,
This must be a simple reason, but I can't work it out. I hope someone can help.
I have Combobox's on various forms. Each has a number of Items ... here's an example of the code
Code
Private Sub ComboBox1_DropButtonClick()
With ComboBox1
.AddItem "example 1"
.AddItem "example 2"
.AddItem "example 3"
End With
End Sub
Display More
Each time I click on the drop down the number of items repeat, ie double. This goes on and on.
Do I have to clear the combobox? if so where is it best to do this.
or
Do I have to put it in another action ie, enter or dblclick. (I have tried but I'm having no luck)
Many Thanks