xorpas 4 Posted April 28 Hellow How can Make memo support html that show readable text ? Share this post Link to post
Alexander Sviridenkov 356 Posted April 28 9 minutes ago, xorpas said: Hellow How can Make memo support html that show readable text ? https://delphihtmlcomponents.com/editor.html 1 Share this post Link to post
Lajos Juhász 293 Posted April 28 2 minutes ago, xorpas said: It is a better without using a third party In that case you will have to implement it yourself. 1 Share this post Link to post
Remy Lebeau 1394 Posted April 29 15 hours ago, xorpas said: How can Make memo support html that show readable text ? The standard FMX TMemo simply does not support HTML (or even basic text formatting in general). You will have to use a 3rd party control (or make your own from scratch) to display rich/formatted text. 1 Share this post Link to post
Dave Nottage 557 Posted April 29 16 hours ago, xorpas said: How can Make memo support html that show readable text ? You might be able to modify this code to use TMemo instead of TLabel: https://github.com/grijjy/CodeRage2019/tree/master/HtmlLabel 1 Share this post Link to post
xorpas 4 Posted May 4 On 4/29/2024 at 2:03 AM, Remy Lebeau said: The standard FMX TMemo simply does not support HTML (or even basic text formatting in general). You will have to use a 3rd party control (or make your own from scratch) to display rich/formatted text. Thank's mr REMY On 4/29/2024 at 2:07 AM, Dave Nottage said: You might be able to modify this code to use TMemo instead of TLabel: https://github.com/grijjy/CodeRage2019/tree/master/HtmlLabel Thank's mr Dave I will see it Share this post Link to post
Dave Nottage 557 Posted May 4 On 4/29/2024 at 10:37 AM, Dave Nottage said: You might be able to modify this code to use TMemo instead of TLabel: I had a brief look and it appears it may be much more complex with a TMemo Share this post Link to post
#ifdef 12 Posted May 4 (edited) On 4/29/2024 at 6:07 AM, Dave Nottage said: You might be able to modify this code to use TMemo instead of TLabel: https://github.com/grijjy/CodeRage2019/tree/master/HtmlLabel + https://github.com/digao-dalpiaz/DzHTMLText Edited May 4 by #ifdef Share this post Link to post