All listboxes have a DataSource, ValueMember, and DisplayMember as does a combo box. To use those properties add something like this:MyListBox.DisplayMember = "MyDisplayFieldName"
MyListBox.ValueMember = "MyValueFieldName - Usually a PK of some sort"
MyListBox.DataSource = MyBusinessObject.CurrentDataTable
That's it