Yes, it says:
This will install TRichView FMX version 23.2 on your computer.
BTW, same problem in iOS.
Search found 43 matches
- Sat Aug 16, 2025 1:21 pm
- Forum: Support
- Topic: Caret color in table cell?
- Replies: 4
- Views: 8367
- Fri Aug 15, 2025 8:26 pm
- Forum: Support
- Topic: Caret color in table cell?
- Replies: 4
- Views: 8367
Re: Caret color in table cell?
The download release file is labeled v23 that I downloaded on June 30, but when I bring up Delphi, it says it is TRichViewFMX 23.2. The source files show April 15. Viewing the download file details, it also says the product version is 23.2.
- Thu Aug 14, 2025 9:57 pm
- Forum: Support
- Topic: Caret color in table cell?
- Replies: 4
- Views: 8367
Caret color in table cell?
I've set the caret width in fmxRVERVData.pas as mentioned in your help file, and it works great (I was hoping Caret.Width property would have worked here so as to not have to modify source code). Anyway, I then used the Caret.Color property to set the caret color to blue as a test, and the caret ...
- Wed Aug 13, 2025 9:43 pm
- Forum: Support
- Topic: Android and iOS keyboard issue with undo
- Replies: 2
- Views: 7599
Re: Android and iOS keyboard issue with undo
No problem... this one is probably not urgent. It was just very weird that a customer might run into, so thought you might want to check it out. On android it did some bad stuff to a table, like delete it, or duplicate some text around the table, not on iOS though.
- Mon Aug 11, 2025 10:48 pm
- Forum: Support
- Topic: Android and iOS keyboard issue with undo
- Replies: 2
- Views: 7599
Android and iOS keyboard issue with undo
Using your Editor2 demo, try this on Android (it does occur on iOS, but nowhere nearly as bad).
Type a few words, but leave the caret at the last word you typed (no space). Now type 3 more non-space chars and then start tapping the Undo more than 3 times. Watch the behavior to what gets undone. You ...
Type a few words, but leave the caret at the last word you typed (no space). Now type 3 more non-space chars and then start tapping the Undo more than 3 times. Watch the behavior to what gets undone. You ...
- Thu Jul 24, 2025 8:08 pm
- Forum: Support
- Topic: Attributes like bold, acting strange on Android
- Replies: 3
- Views: 34774
Re: Attributes like bold, acting strange on Android
Sorry, forgot to add that.
Delphi 12.3
TRichViewFMX v23 downloaded June 30 from the link provided upon purchase.
Delphi 12.3
TRichViewFMX v23 downloaded June 30 from the link provided upon purchase.
- Thu Jul 24, 2025 4:39 pm
- Forum: Support
- Topic: Attributes like bold, acting strange on Android
- Replies: 3
- Views: 34774
Attributes like bold, acting strange on Android
Using your Editor2 as an example. Using a Windows or iOS build, this works fine, but on Android it doesn't.
Type in some text. Click the bold button on the toolbar and start typing. On Windows or iOS, everything you type afterwards is in bold. On Android, the first letter you type is bold, then as ...
Type in some text. Click the bold button on the toolbar and start typing. On Windows or iOS, everything you type afterwards is in bold. On Android, the first letter you type is bold, then as ...
- Sun Jul 20, 2025 9:54 pm
- Forum: Support
- Topic: DrawStyleText DrawLine issue
- Replies: 3
- Views: 62431
Re: DrawStyleText DrawLine issue
I solved the underline disappearing issue. I had to create a TStrokeBrush, and pass that as a parameter to Canvas.Canvas.DrawLine rather than using Canvas.Canvas.Stroke.Color (which I no longer need).
- Sat Jul 19, 2025 4:43 pm
- Forum: Support
- Topic: bullet gets hidden if hidden text not skipped
- Replies: 1
- Views: 34611
bullet gets hidden if hidden text not skipped
Using your Editor1 demo as an example. If you load the attached rtf into the editor with RTFReadProperties.SkipHiddenText set to false, the bullet does not show up, but should. I use hidden text to mark the start and end of specific text to be included in a report summary.
TRichViewFMX v23
Delphi ...
TRichViewFMX v23
Delphi ...
- Tue Jul 15, 2025 4:04 pm
- Forum: Support
- Topic: Caret placement on Android vs iOS
- Replies: 2
- Views: 35041
Re: Caret placement on Android vs iOS
OK, that's cool. Now I know how to respond to customers who might bring it up like I did. 

- Mon Jul 14, 2025 9:35 pm
- Forum: Support
- Topic: Caret placement on Android vs iOS
- Replies: 2
- Views: 35041
Caret placement on Android vs iOS
Using your Editor2 as an example, if I deploy it to Android, I can tap on a word and the caret is placed within the word where I tapped. However, on iOS it places the caret either at the start or end of the word I tapped on, depending on which side portion of the word I tapped on. I don't know if ...
- Sun Jul 13, 2025 8:29 pm
- Forum: Support
- Topic: Android crash in Hide after I added a toolbar
- Replies: 3
- Views: 68934
Re: Android crash in Hide after I added a toolbar
Thanks! That seems to have fix it! I was about to revert everything, so I'm very thankful for a quick fix!
- Sat Jul 12, 2025 9:35 pm
- Forum: Support
- Topic: Android crash in Hide after I added a toolbar
- Replies: 3
- Views: 68934
Re: Android crash in Hide after I added a toolbar
This is the stack trace when it crashes on CaretPt.Visible := False; where in this case, CaretPt is $b400007b0f110f40
Fmxrvselectionhandlesfm.TRVFMXSelectionHandles.Hide()($b400007b9f257cf0)
Fmxrvselectionhandlesfm.TRVFMXSelectionHandles.SetPositions(bool)($b400007b9f257cf0,false)
Fmxrvrvdata ...
Fmxrvselectionhandlesfm.TRVFMXSelectionHandles.Hide()($b400007b9f257cf0)
Fmxrvselectionhandlesfm.TRVFMXSelectionHandles.SetPositions(bool)($b400007b9f257cf0,false)
Fmxrvrvdata ...
- Fri Jul 11, 2025 11:33 pm
- Forum: Support
- Topic: Android crash in Hide after I added a toolbar
- Replies: 3
- Views: 68934
Android crash in Hide after I added a toolbar
I added a toolbar based entirely on your Editor2 demo. It works great on iOS, but crashes Android when I do a rve.Clear (even though your demo does not crash).
In fmxRVSelectionHandlesFM, procedure TRVFMXSelectionHandles.Hide, line 594 you have this:
if CaretPt <> nil then
CaretPt.Visible ...
In fmxRVSelectionHandlesFM, procedure TRVFMXSelectionHandles.Hide, line 594 you have this:
if CaretPt <> nil then
CaretPt.Visible ...
- Tue Jul 08, 2025 10:11 pm
- Forum: Support
- Topic: Simulate a backspace key
- Replies: 5
- Views: 55251
Re: Simulate a backspace key
Works great on iOS as well. Also took advantage of the OnEnterPress event using a button to perform the same function as the virtual kbd.