I'm not gaining anything by doing that, since the vaule coming in from the database for this field is the ProductID (an int). CoverageType is just the friendly name for it. In fact the comands preceding the foreach are:
// set the source & display columns
cboProduct.DisplayMember = "CoverageType";
cboProduct.ValueMember = "ProductID";
Basically I need to list all available products in the dropdown and then have it automatically select the right one out of the list when I start filling in records. You know, the stuff that Access Datagrids have been doing for 15 years!
I'm too old for this much frustration.