ComboBox1.DataBindings.Clear 'Very Important if you set the DataSource multiple times while using DataBindings ComboBox1.DataSource = myBindingSource ComboBox1.DisplayMember = "Name" ComboBox1.ValueMember = "ID"
'Supports EntityViews DataPopulate(ComboBox1, myEntityView, EntityFields.Name, EntityFields.ID) 'Supports EntityCollections DataPopulate(ComboBox1, myEntityCollection, EntityFields.Name, EntityFields.ID) 'Supports BindingSource DataPopulate(ComboBox1, myBindingSource, EntityFields.Name, EntityFields.ID)