I have a combo box in a form and I want to search it for certain strings. Right now I'm only doing
If Me.Combo0.text = "hello" then whatever...
But that only tests the text that is currently selected. How would I test every entry in the combo box to see if any entry was "hello".
If I can't test everything in the combo box how can I check every entry in the column of the table that the combo box is based on.
Thanks. You guys rock.
If Me.Combo0.text = "hello" then whatever...
But that only tests the text that is currently selected. How would I test every entry in the combo box to see if any entry was "hello".
If I can't test everything in the combo box how can I check every entry in the column of the table that the combo box is based on.
Thanks. You guys rock.