Reputation: 1
For a school task, I need to display certain news articles about the climate in a Delphi FireMonkey Form. I have a Long Text field that contains the article's body in Microsoft Access.
When I try to populate a Memo component on my Delphi FMX form from the Access database, tags appear everywhere. (See Image). Is there anything I can do to fix this? Thanks.
Upvotes: 0
Views: 84
Reputation: 2007
The Long Text field(s) in your Access DB have a property called TextFormat
which is obviously set to RichText
. Change that (in Access) to PlainText
, then you should also see the <div>
tags in Access where you can delete them from the field content, so they don't appear in the Delphi app anymore.
Upvotes: 0