I have a ultra combo box that has a datasource which is a collection of objects. The Valuemember is "ColorID" and the displaymember is "Name". When the form opens I always want the ultracombo to display the row with the "ColorID" of 26. What's the best way to accomplish this? I don't want to loop through all of the rows looking for the value member, i'd like to find the Infragistics equivalent of:
ColorsCombo.SelectedValue = 26
to put in my form load event.
Set the ultraCombo.Value = 26
Thanks. I'm not sure how I missed that... I guess I was stuck trying to mess with ActiveRow.