1) you have MyBO dropped on the form2) you have MyBBS (BusinessBindingSource) dropped on the form3) you have MyBBS.BusinessObject set to MyBO4) you have ComboBox1 dropped on the form and the DataSource property set to MyBBS5) you have ComboBox1.DisplayMember set to "EmployeeName" and the ValueMember property left blank
When you run, the combo box will fill with the EmployeeName for every record in the business object. When you access the ComboBox1.SelectedValue property, you will receive an instance of the MyBO class (an actual business object), on which, you can access all of the other columns within the business object (no just EmployeeID).