Hi,
Im using datagridview with
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!
Im using datagridview with
Code:
.RowFilter = "loc like '%" + txtSearchT.Text + "%'"
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!