Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Foreach item in a combobox
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00960453
Message ID:
00960467
Views:
8
The List collection stores objects so the type should be whatever type you are storing in the collection, string, int, custom type, etc.

Of course you can always use a for loop if you can't get foreach to work. In my case I am storing a custom type called ListItem.
for (int i = 0; i < cbo.Items.Count ; i++)
{
	ListItem item = (ListItem)cbo.Items[i];
	if (item.IntValue == lookingForValue)
	{
		cbo.SelectedItem = item;
		break;
	}
}
>I am trying to do a foreach on all the items in a combobox, but I am having problems finding the correct type
>
>
>foreach (<type> oItem in this.myComboBox.Items)
>{
>  MessageBox.Show(oItem.ToString());
>}
>
>
>Anyone know what type I need to use or is there a better way to go through all items in a combobox?
>
>Thanks,
>Einar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform