Hello.
I filled out the listbox and then try to remove some strings from it. How I can do that?
For I = ListBox1.ListCount - 1 To 0 Step -1 If ListBox1.List(I) = "some string" Then Me.ListBox1.RemoveItem (I) End If Next I
Thank you, Ivana!
It works great!