Hey there.
I'm not sure why I didn't notice it before, but the error is coming up because of your Index. A ComboBox uses ListIndex 0 - n. You have to run your loop as For i = ComboBox1.ListCount - 1 to 0.
That should fix your problem.
Scott
Hey there.
I'm not sure why I didn't notice it before, but the error is coming up because of your Index. A ComboBox uses ListIndex 0 - n. You have to run your loop as For i = ComboBox1.ListCount - 1 to 0.
That should fix your problem.
Scott