Just a small silly question:
I've bounded a couple of comboboxes to a dataset and upon loading them, I see the first Item being displayed.
which is what i expect.
However another combobox which get populated from the column names of a specific table in the (same) dataset, the first item you see is an empty text (blanc).
The number of items is the correct one (I've verified this).
So, I had to force it to display the first Item when it loads:
myCombo.Text = myCombo.Items(0)
and it works fine.
However I am curious to know.
The design properties of both boxes are the same. why this difference? Is it the way I am populating them?
TIA
|