I am trying to compare what a user types in via DBComboBox to what is in the table. How do I do that? Please help!
Printable View
I am trying to compare what a user types in via DBComboBox to what is in the table. How do I do that? Please help!
It appears you need to use the MatchedWithList property of the DBCombo like this............
if DBCombo1.MatchedWithList then do something
or if DBCombo1.MatchedWithList = False then "It's Not In The List"
I'm assuming that the list is populated from the Table you want to find the entry in!
Thank that worked great!!!!