Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Filtering AdoTable + dbrichedit

Status
Not open for further replies.

WolfstarUA

Programmer
Oct 30, 2023
1
0
0
NO
I write next code

Code:
    if SearchBox8.Text <> '' then
      begin
        DataModule2.ADOTable2.Filtered := false;
        DataModule2.ADOTable2.Filter := '[Текст] like ' + QuotedStr('%' + SearchBox8.Text + '%');
        DataModule2.ADOTable2.Filtered := true;
      end
      else
        DataModule2.ADOTable2.Filtered := false;

Why no good result. field "Текст" in dbrichedit. Sorry, i bad english but if need i more explain
 
Is the underlying field a BLOB field? If so, I think those need to be handled differently.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top