After binding a list to combobox, its dataSource.Count is 5 but, combobox item count is 0. how can it be?
I\'m used to Web programming and this is in Windows Forms. So
If you'd expand DataSource items in debuger, you'd probably notice that 1st element on list is null. That is why DataSource does not render ComboBox Items. Removing null items from the list should do all the work;