Im using this code to filter my table:
Table.Filtered := False; Table.Filter := \'[\' + Field_Search + \'] LIKE \'\'%\' + Edit_Search.Text + \'%\'\'\'; Tabl
The following Code will work as Like as well:
if Edit1.Text <>'' then begin Query1.Filter :='FieldName ='+quotedstr('*'+ edit1.Text +'*'); Query1.Filtered:=true; end else begin query1.Filtered :=false; end;