Hi
Any ideas how I can achieve this - the drop down is bound to an entity collection
DA.FetchEntityCollection(colProductTypes, Nothing)
cboProductType.DataSource = colProductTypes
cboProductType.DisplayMember = "Description"
cboProductType.ValueMember = "ProductType"
which is then in turn bound to a property of my main entity
cboProductType.DataBindings.Add("SelectedValue", MyBase.Entity, "ProductTypeID")
However, not having a entry selected is a valid situation. Once the datasource property is set on a drop down you are not allowed to modify it...
Any ideas....