Search found 5 matches

by arnor
Mon Aug 20, 2007 10:03 am
Forum: Support
Topic: SaveRVFToStream problem
Replies: 1
Views: 8703

SaveRVFToStream problem

I use SaveRVFToStream to export to Tmemorystream,
I found the stream.size is 0.
why?
by arnor
Mon Aug 13, 2007 2:53 am
Forum: Support
Topic: Is it possible to save image to file in richview?
Replies: 0
Views: 15154

Is it possible to save image to file in richview?

Is it possible to save image to file in richview by mouse right click -> popup menu -> save to file ?
by arnor
Sun Aug 12, 2007 4:16 pm
Forum: Support
Topic: Question about the detecting url while typing
Replies: 3
Views: 12759

Thanks for quick response.

The problem is solved.

Thanks a lot.
by arnor
Sun Aug 12, 2007 11:12 am
Forum: Support
Topic: Question about the detecting url while typing
Replies: 3
Views: 12759

Here is my another test.

I wrote new demo to test the code to detecting url.

In my test,

I add two event to my richviewedit (copy from your URLs demo),


procedure TForm1.rveKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key in [VK_SPACE, VK_RETURN] then begin
// url ...
by arnor
Sun Aug 12, 2007 10:57 am
Forum: Support
Topic: Question about the detecting url while typing
Replies: 3
Views: 12759

Question about the detecting url while typing

First, detecting url while typing is ok.
I already tested your demos.

But I have another question about this.

In your \Assorted\Hypertext\URLs demo,
what I want is append the content to another richview,
then click url on richview, but I fail

Here is my code

procedure TForm1.Button1Click(Sender ...