trichview.com

trichview.support




Re: Moving Items


Return to index


Author

Message

Sergey Tkachenko

Posted: 10/23/2002 21:28:48


How to add contents of rv2 to rv1:


var Stream: TMemoryStream;


Stream := TMemoryStream.Create;

rv2.SaveRVFToStream(Stream, 0);

Stream.Position := 0;

rv1.InsertRVFFromStream(Stream, rv1.ItemCount);

Stream.Free;

rv1.FormatTail;

// if rv1 is TRichViewEdit, call rv1.ClearUndo




> How to move the contents of

> a TRichViewEdit to other

> an item by time?

>

> I want to join a lot of RichViews

> in one single RichView that will be used

> for print, and I want control the Page breaks.

>

>







Powered by ABC Amber Outlook Express Converter