Populating a ComboBox bound to a list via C#

I figured it out. I was using Combo.text = “string” and Combo.Value = “String”. I needed to instead reference the same BO adapter that the combo does, and pull in the data via that method. Works now!