General TRichView support forum. Please post your questions here
miwan
Posts: 26 Joined: Tue Nov 01, 2011 8:30 pm
Post
by miwan » Sun Sep 27, 2015 5:03 pm
Hi
I hope your help to copy text from a RichEdit (Delphi IDE) in a RichView (component TRichView).
If possible what is the procedure.
I did like that
RichView1.text := RichEdit1.text ; ---- Error
RichView1.ADDNL := RichEdit1.text ; ----Error
I thank all the help
SpoQSI
Posts: 16 Joined: Wed Sep 02, 2015 11:48 am
Post
by SpoQSI » Mon Sep 28, 2015 6:58 am
I haven´t tested it yet, but you might try:
Code: Select all
procedure CopyFromRichEditToRichView();
var strStream: TStringStream;
begin
RichEdit1.Lines.SaveToStream(strStream);
RichView1.LoadRTFFRomStream(strStream);
end;
Sergey Tkachenko
Site Admin
Posts: 17749 Joined: Sat Aug 27, 2005 10:28 am
Contact:
Post
by Sergey Tkachenko » Mon Sep 28, 2015 8:27 am
More exactly
Code: Select all
procedure CopyRichEditToRV(RichEdit: TRichEdit; RichView: TCustomRichView);
var Stream: TMemoryStream;
begin
Stream := TMemoryStream.Create;
try
RichEdit.Lines.SaveToStream(Stream);
Stream.Position := 0;
RichView.Clear;
RichView.LoadRTFFromStream(Stream);
RichView.Format;
finally
Stream.Free;
end;
end;
Make sure that RichEdit.PlainText = False;
miwan
Posts: 26 Joined: Tue Nov 01, 2011 8:30 pm
Post
by miwan » Mon Sep 28, 2015 9:24 am
thank you for this quick response that's perfect .
but another solution that stream?
miwan
Posts: 26 Joined: Tue Nov 01, 2011 8:30 pm
Post
by miwan » Mon Sep 28, 2015 9:56 am
dear ali
This is good it is concluded
thank you a lot
miwan
Posts: 26 Joined: Tue Nov 01, 2011 8:30 pm
Post
by miwan » Mon Sep 28, 2015 9:58 am
Correction: ali = all (Sergey, SpoQSI) .