Re: Filtering a Delphi table

Posted by David S. on March 18, 2005

In Reply to: Filtering a Delphi table posted by Seriousfun on November 08, 2004

You have some incorrect syntax.

Should be:

Table1.Filter := 'Name='''+Filter_Request.KeyValue+'''';

This would translate to:

Table1.Filter := 'Name=''Joe Bloggs''';