New DzHTMLText 3.0

After a lot of work, finally the component now supports multiple platforms using the Firemonkey framework (FMX).

DzHTMLText is a component for Delphi and Lazarus that allows you to format a Label with HTML notation.

You can now compile for Windows, Linux, Android, iOS and MacOS.

Download it now, it’s free: digao-dalpiaz/DzHTMLText: Delphi and Lazarus HTML Label component (github.com)

Here you can see a lot of DzHTMLText functionalities:

Please, leave your comment about this component. If you like it, consider buy me a coffee using Ko-fi button on right widget. Thanks.

8 thoughts on “New DzHTMLText 3.0”

    1. I tried to reproduce the issue here using DzHTMLText with Align = alClient, but I couldn’t.
      Please, open an Issue on GitHub commenting the steps to reproduce the issue.
      Thanks

  1. Hi, I have installed version 6.12 but on android 64 there is a bug in file Vcl.DHTokenEngine at line 1847.
    Line : if Text[CurPos]=#10 then Inc(CurPos); //when #13#10 sequence.
    If CurPos > Len => Text[CurPos] has range check error.

    I have modifed source so :

    if CurPos < Len
    then if Text[CurPos]=#10
    then Inc(CurPos); //when #13#10 sequence

    Bye.

Leave a Reply to aabb Cancel Reply

Your email address will not be published. Required fields are marked *

Scroll to Top