fl0wson
fl0wson

Reputation: 11

Problem with delphi tdbrichedit

I'm using the TDBRichEdit. I got a table with some records, some of there are RTF formatted, some are plaintext.

I've also got a DBGrid. The grid and the dbrichedit has the same datasource.

When I click on a record on the grid which has RTF formatting, then the text is displayed formatted in the dbrichedit. But when I click on a record which has unformatted text, it's displayed in the dbrichedit with the formatting of the old (previuosly displayed) record - but it should be displayed unformatted as it is. How could I do this?

Upvotes: 1

Views: 866

Answers (1)

Johan
Johan

Reputation: 76537

Set

DBRichedit1.PlainText:= true;

When changing to the plaintext field.

Upvotes: 1

Related Questions