Search found 2 matches

by camelzsm
Wed Apr 24, 2013 7:22 am
Forum: Support
Topic: How to make TSRichViewEdit table allows to break across page
Replies: 1
Views: 7836

How to make TSRichViewEdit table allows to break across page

How to make TSRichViewEdit table allows to break across page
by camelzsm
Mon Mar 05, 2012 2:12 pm
Forum: Support
Topic: how to Save Item To stream?
Replies: 1
Views: 7508

how to Save Item To stream?

for i:=0 to rve.RVData.ItemCount-1 do
begin
aa:=rve.RVData.GetItem(i);

xxstream.Clear;

aa.SaveRVF(xxstream,rve.RVData,i,aa.ParaNo,'xx',nil,false);

if xxstream.Size<>0 then
begin
showmessage(inttostr(xxstream.Size));
xxstream.SaveToFile('c:\aa.txt');
xxstream.Position:=0;
rve1 ...