|
-
Sep 13th, 2006, 09:32 AM
#1
Thread Starter
Lively Member
[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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|