[RESOLVED] For Each Loop Problem
I'm trying to use a For Each loop to iterate through a collection of items from a combobox and compare the value of each item in the collection to a string value to find the index of the string value in the combobox and then set another combobox's .selectedIndex to that index. But instead of comparing the two values, my code seems to be setting the value of the first item in the collection to the value of the item it is supposed to be being compared to! Help!
If selID IsNot""Then
comboColl = coPropID.Items()
ForEach thisObject AsStringIn comboColl
If thisObject = selID Then
ind = coPropID.Items.IndexOf(selID)
ExitFor
EndIf
Next thisObject
coProp.SelectedIndex = ind
EndIf
Re: For Each Loop Problem
You wont need a loop for that
VB Code:
'assuming coPropID is the combobox holding the items to be searched
'and coProp is the combobox to be selected
coProp.SelectedIndex = coPropID.FindStringExact(selID)
Re: For Each Loop Problem
Thingimijig, I think I love you!!! Thank you so much! That works a treat! :D