ptlycldy 1 Posted November 26, 2022 I am trying to convert an old Windows program into Android. When I built the Win program it was all VCL and TRichEdit allowed you to edit a line at a time. I now am using a CE edition and can't find anything that might let me do that in FMX for Android. Does anyone have any suggestions? The application is for an aid in decrypting those "Cryptoquote" puzzles found in newspapers, so maintaining the sentence/line-of-text structure is important. Thanks for your ideas. Ptlycldy Share this post Link to post
programmerdelphi2k 237 Posted November 26, 2022 https://www.tmssoftware.com/site/tmsfmxpack.asp?s=fmxricheditor#features Share this post Link to post
ptlycldy 1 Posted November 26, 2022 Thanks for the tip. Looks like great software, but my application is just for my wife and myself. (I'm long retired and it is out of my price range now.) Share this post Link to post
limelect 48 Posted November 26, 2022 Google search FMX RICHEDITE i found a few for example https://github.com/DelphiWorlds/KastriFree/blob/master/Controls/DW.RichEdit.pas Share this post Link to post
Dave Nottage 557 Posted November 26, 2022 1 minute ago, limelect said: for example https://github.com/DelphiWorlds/KastriFree/blob/master/Controls/DW.RichEdit.pas That's for Windows only. Share this post Link to post
limelect 48 Posted November 26, 2022 (edited) FMX uses // RTL System.UITypes, System.Classes, System.SysUtils, // FMX FMX.Memo, FMX.Types, FMX.Graphics, FMX.Controls.Model, FMX.Controls.Presentation; am I wrong? Edited November 26, 2022 by limelect Share this post Link to post
Dave Nottage 557 Posted November 26, 2022 2 hours ago, ptlycldy said: The application is for an aid in decrypting those "Cryptoquote" puzzles found in newspapers, so maintaining the sentence/line-of-text structure is important. Can you describe why it needs to be rich edit? Share this post Link to post
Dave Nottage 557 Posted November 26, 2022 (edited) 3 minutes ago, limelect said: am I wrong? Yes. I wrote it, so I would know. Also see line 58 of the code Edited November 26, 2022 by Dave Nottage 1 Share this post Link to post
KenR 29 Posted November 26, 2022 I believe that https://github.com/DelphiWorlds/Kastri has a RichEdit component. Share this post Link to post
Dave Nottage 557 Posted November 26, 2022 34 minutes ago, KenR said: I believe that https://github.com/DelphiWorlds/Kastri has a RichEdit component. No, it doesn't. I wish it did 🙂 1 Share this post Link to post
Serge_G 87 Posted November 29, 2022 Perhaps this one https://www.trichview.com/ showed in getIt ? Share this post Link to post
Rollo62 536 Posted November 29, 2022 8 hours ago, Serge_G said: Perhaps this one https://www.trichview.com/ showed in getIt ? Thanks for pointing me to that, I used the old VCL version some years ago. Didn't realize that this is now FMX ready too, at least a few platforms, that is great news. Quote Supported FireMonkey platforms: Windows (Delphi XE6 and newer), 64-bit macOS (Delphi 10.3 and newer), Android (Delphi 10.4 and newer) I could recommend the old VCL version, not sure yet about FMX, but I will look into that. Share this post Link to post