I have a combo populated with:
With Me.cboOwner '// populate cboOwner
.DataSource = dtMyCos
.DisplayMember = "CoName"
End With
DtCos datatable contains:
CoID int
CoName string
So far so good!
Then I have a second combo cboIssuer that needs to contain all the items in cboOwner
**PLUS** an additional item CoName: "Mothership"
I'm failing miserably to clone cboOwner.items to cboIssuer.items and add the additional "Mothership" item.
Any suggestions?
In case it helps, dtMyCos is filled via ExecuteReader, and in the current test database there is a row
CoID: 1
CoName: 'Mothership'
The 'Mothership' entry will **ALWAYS** be CoID = 1