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 ?
feedback
|
|
call the
This will work for a ListBox or a ComboBox http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.aspx | |||
|
feedback
|
|
If it's a Windows Forms ListBox control you can use ListBox.Items.Clear() | |||||||
|
feedback
|