Problem
When using the ComboBox as a lookup for data from a table, later finding the correct record requires code to iterate through the items in the ComboBox list
Proposed Solution
Add several new methods to the ComboBox to return the index of the item you want to find:
IndexOf(<string>) - matches the text displayed for the item (case sensitive match)
IndexOfItemTag(<object>) - matches on the value stored with SetItemTag
Both IndexOf methods should return -1 if no match found
Example Workflow
Alternatives Considered
Who Would This Help?