Search found 5 matches

by dutboy
Tue Jul 10, 2007 5:57 am
Forum: Support
Topic: about LoadRVFFromstream
Replies: 1
Views: 10278

about LoadRVFFromstream

sir:

I use LoadRVFFromStream method to insert content from anthoer RichViewedit. The code is here:


RichViewEdit1.Clear;
bs:=TMemoryStream.Create;
richviewedit2.SaveRVFToStream(bs,false);
bs.Position:=0;
RichViewEdit1.LoadRVFFromStream(bs);
RichViewEdit1.Format;
bs.Free;


These code ...
by dutboy
Fri Nov 18, 2005 2:03 pm
Forum: Support
Topic: about insert link
Replies: 1
Views: 13284

about insert link

In my program , I insert link text using code under:

f:=TfrmInsertLink.Create(self);
url:=pchar(aRVE.GetCurrentTag);
if url='' then url:='http://';
f.edtTarget.Text:=url;
if f.ShowModal=mrok then
begin
FontInfo:=TFontInfo.Create(nil);
try
FontInfo.Assign(rvs.TextStyles[4]);
FontInfo ...
by dutboy
Fri Nov 18, 2005 1:58 pm
Forum: Support
Topic: Question about update from 1.7 to 1.9.15
Replies: 1
Views: 13432

Question about update from 1.7 to 1.9.15

In my program, I had completed the function of font setting,such as make BOLD/Italic/Underline and so on,using Version 1.7. Recently I update TRichview from v1.7 to v1.9.15.But unfortunately the function of making bold/italic/underline doesn't work now.


Pls help me.
Why?
by dutboy
Tue Nov 15, 2005 12:56 pm
Forum: Support
Topic: question about delete blank lines in TDBRichviewEdit
Replies: 2
Views: 16316

That's good!

Thanks a lot!

Bingo!

Thank you.
by dutboy
Mon Nov 14, 2005 12:23 pm
Forum: Support
Topic: question about delete blank lines in TDBRichviewEdit
Replies: 2
Views: 16316

question about delete blank lines in TDBRichviewEdit

Dear sir:
I use on TDBRichViewEdit assocated with database. And I use the code of "delete blank lines " found in this forum which are behind:
procedure TfrmMain.DeleteBlankLines(RVData: TCustomRVData);
var
i,r,c: Integer;
table: TRVTableItemInfo;
begin
for i := RVData.ItemCount-1 downto 0 do ...