Well, here I am again....
Problem this time is, here is my code:
Private Sub ComboBox1_Change()
ComboBox1.AddItem "No leaks detected"
ComboBox1.AddItem "No leakage or adverse damage detected"
ComboBox1.AddItem "The entire contents of the packaging were retained"
End Sub
With just these 3 entries listed to add in the cbo, It is duplicating, or even tripling the same entries..........what am i doing wrong
In the box it looks like this:
no leaks detected
no leakage or adverse damage detected
the entire contents of the packaging were retained
no leaks detected
no leakage or adverse damage detected
the entire contents of the packaging were retained
It does this whether i use the index or not. Help!