Вы можете попробовать поместить это утверждение при загрузке страницы и убедиться, что в поле со списком загружены элементы или нет ??
comboBox1.SelectedIndex = 0;
если вы используете winforms, попробуйте поместить этот оператор в функцию initializecomponent ()
"Object reference not set to an instance of an object for combo box".
Means one or two things normally.
combobox not initialized to null;
or combobox not initalized to new
ComboBox combobox = null;
then inside of the try set the combobox variable to an instance of new like the following
Try
{
combobox = new Combobox();
}