Search found 2 matches

by nmadani
Sun Oct 22, 2017 6:06 pm
Forum: Support
Topic: Using TRichView (Demo) for the first time ...
Replies: 2
Views: 13132

Re: Using TRichView (Demo) for the first time ...

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.
by nmadani
Sun Oct 22, 2017 1:29 pm
Forum: Support
Topic: Using TRichView (Demo) for the first time ...
Replies: 2
Views: 13132

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 ...