How to search through all items of a combobox in C#? -
i have combobox, , search through every element in it.
how can this? (also number of items not same everytime, not important).
i using c# windows form application.
you can this
for (int = 0; < mycombobox.items.count; i++) { string value = mycombobox.getitemtext(mycombobox.items[i]); }
Comments
Post a Comment