Thanks for the quick reply. I also needed to add a TRVStyle object to make it work.
I may have discovered a display bug too. I will submit it separately.
Search found 2 matches
- Sun Oct 22, 2017 6:06 pm
- Forum: Support
- Topic: Using TRichView (Demo) for the first time ...
- Replies: 2
- Views: 12340
- Sun Oct 22, 2017 1:29 pm
- Forum: Support
- Topic: Using TRichView (Demo) for the first time ...
- Replies: 2
- Views: 12340
Using TRichView (Demo) for the first time ...
I just downloaded and installed the TRichView demo: On a simple form (Delphi Tokyo 10.2.1), should not the following display the contents of a file? procedure TForm1.Button1Click(Sender: TObject); var ss: TStringStream; const CR: Byte = 13; LF: Byte = 10; begin ss := TStringStream.Create; try ss ...