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.


The Long Text field(s) in your Access DB have a property called
TextFormatwhich is obviously set toRichText. Change that (in Access) toPlainText, 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.