I have a combobox that is populated by a SQL querry. Problem is the first item of the comboBox where normally the comboBox.text go is blank. You have to drop down the menu item for the items to appear. I want to comboBox to populated with the first item in the first row. I am currently populating my comboBox with the add property
while (oleDbDataReader1.Read() == true)
{
comboBox1.Items.add = oleDbDataReader1.GetString(0) ;
}
This though is skipping the first field. How can I add the first result from the query to the first field in my comboBox?
Thanks