Set ComboBox to an item when bound to objects
24-Apr-1111 Leave a comment
Use Object.Equals.
Then set the combobox selecteditem to a new instance of the object with the required ID or other.
Sample Equals
Public Overrides Function Equals(obj As Object) As Boolean
If obj Is Nothing Then
Return False
End If
Return CType(obj, Customer).ID = Me.ID
End Function