Im using this code to filter my table:
Table.Filtered := False;
Table.Filter := '[' + Field_Search + '] LIKE ''%' + Edit_Search.Text + '%''';
Table.Filtered := True;
but it raises this exception:
"Operation not applicable."
where is problem?
|
|
|
A For more complicated filtering, use the TDataSet.OnFilterRecord event:
|
|||||||||||||
|