Not that I know of but something like this might help
Private Sub cmdC1_Click()
intFlag = 0
strS = Combo1.Text
For intA = 0 To Combo1.ListCount - 1
If StrComp(Combo1.List(intA), str) = 0 Then
intFlag = 1
End If
Next
If intFlag <> 1 Then
Combo1.AddItem strS
End If
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.