WelshyWizard
IS-IT--Management
Hi all,
I've got the following code that helps the user filter a dataview on a series of textboxes.
What I want is for the user to be able to add a string of words in TextBox3. For example.
If a record had the Title: "Ways to wash dirty underwear" and the user entered "ways underwear" (or something like that), the record would be filtered out... Similar to Google really. At present the user can only enter one word.
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....
I've got the following code that helps the user filter a dataview on a series of textboxes.
Code:
DataView1.RowFilter = "(Title Like '*" & TextBox3.Text & "*' OR Description Like '*" & TextBox3.Text & "*') AND UserRep Like '" & TextBox1.Text & "'"
What I want is for the user to be able to add a string of words in TextBox3. For example.
If a record had the Title: "Ways to wash dirty underwear" and the user entered "ways underwear" (or something like that), the record would be filtered out... Similar to Google really. At present the user can only enter one word.
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....