Hi,

Im using datagridview with

Code:
.RowFilter = "loc like '%" + txtSearchT.Text + "%'"
Everything works fine when i filter one word but when i write in the txtSearchT box something like "find this" (multiple words) i get errors.

Is there a solution to that that would be straight forward or a solution would be to split the string in arrays and then to search them with OR / AND operators in the row filter string?


Cheers!