PDA

Click to See Complete Forum and Search --> : Database Problem


mikki
Aug 9th, 2000, 04:44 PM
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!

CGTS
Aug 9th, 2000, 07:28 PM
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!

mikki
Aug 10th, 2000, 08:01 AM
Thank that worked great!!!!