Z
Zetsubo69
Guest
I am trying to input more wildcard criteria into my filtering but when i put more than 1 criteria, it always take the newest.
I trying to filter more than just the employee name. Example, location, post code, age
If String.IsNullOrWhiteSpace(txtSearch.Text) Then
MasterDataBindingSource.Filter = ""
Else
MasterDataBindingSource.Filter = $"EmployeeName like '*{txtSearch.Text}*'"
Continue reading...
I trying to filter more than just the employee name. Example, location, post code, age
If String.IsNullOrWhiteSpace(txtSearch.Text) Then
MasterDataBindingSource.Filter = ""
Else
MasterDataBindingSource.Filter = $"EmployeeName like '*{txtSearch.Text}*'"
Continue reading...