Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,

I have a Combobox in my Application.The Data is populating into the combo box from database.In the Stored Proc i have given "All" Explicetely.Now i have another combo box in other page in which only data fetching from the database should be populated not "All".So what i did is explecetely removed All by

cmbFeedType.Items.Remove("ALL");

but its throwing an error like "Operation not supported on read-only collection"
can anyone help on this please..

Thanks,
Prasant
Posted

I assume you've set the ComboBox's ItemsSource.
When you've set the ItemsSource you cannot modify the Items collection, you'll have to modify the collection your ItemsSource is set to.

Also the other way around if you've added any items to the Items collection then you cannot set the ItemsSource.
 
Share this answer
 
Try removing "All" from the dataset BEFORE binding it to the combobox.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900