My code is currently written to select or highlight the first row in a combobox. For example:

cboExample.ListIndex = 0

I need it to select or highlight the row that applies to the selected ID. If I write code to try to select a different row, I get an error. Here's an example:

cboExample.ListIndex = i

What is the best practice for specifying a row in a single-select combobox when you know what ItemData to look for??

Thanks...