I have loaded a comboBox with items from a query. It works well.
I need to add another item after loading from a query. It is an item that I don't want in the table.
Is this possible?
So now the combobox is loaded, but I want to add the Value of "Blank" to the list.
I can't seem to find out how to accomplish this.
I need to add another item after loading from a query. It is an item that I don't want in the table.
Is this possible?
C#:
comboBox.ValueMember = "NetPK";
comboBox.DisplayMember = "NetName";
comboBox.DataSource = dt;
DB.CloseConnection();
So now the combobox is loaded, but I want to add the Value of "Blank" to the list.
I can't seem to find out how to accomplish this.