how to clear all the option in select box in c# (windows form application), is there something easy or need to loop over all the items ?

how to add dynamically option to this seelct box ?

link|improve this question

I can see "Win Forms" in his question – Shoban Dec 22 '10 at 18:19
i add it latter , shoban – Haim Evgi Dec 22 '10 at 18:19
Ah.. ok.. but I don't see "Edited" that was the confusion. – Shoban Dec 22 '10 at 18:21
feedback

2 Answers

up vote 5 down vote accepted

call the Clear() method on the Items Property

listControl.Items.Clear();

This will work for a ListBox or a ComboBox

http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.aspx

link|improve this answer
feedback

If it's a Windows Forms ListBox control you can use ListBox.Items.Clear()

link|improve this answer
its not its regular selectbox – Haim Evgi Dec 22 '10 at 18:20
do you mean a ComboBox? – hunter Dec 22 '10 at 18:21
yes i mean it , thanks – Haim Evgi Dec 22 '10 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.