Use the FindStringExact method. For example, to set the ComboBox's ValueMember property to "OrderID", then you could call
comboBox1.SelectedIndex = comboBox1.FindStringExact( stringOrderID );
where stringOrderID is the orderID of the row to be selected.
Contributed from George Shepherd's Windows Forms FAQ