I can’t find this anywhere. It seems like everyone is trying to get a null at the very first of the list, but I want the opposite. I don’t want a null as an option in my combobox list. How do i get rid of it.
foreach (String item in comboFieldList)
{
fieldBox1.Items.Add(item);
}
Please help. Thanks in advance.
After you’ve added your items to the
ComboBox, set theSelectedItemto be the first item.