Search found 13 matches

by ekoindri
Sun Aug 15, 2010 11:13 am
Forum: Support
Topic: I have purchased but have not received the download link
Replies: 2
Views: 11822

Hello Sergey,

Thanks for your replies.
Let me try to clarify to share it, what is the problem.

I will inform you as soon as possible when this issue is clear.

Best Regards,


Eko Indriyawan
by ekoindri
Sun Aug 15, 2010 2:31 am
Forum: Support
Topic: I have purchased but have not received the download link
Replies: 2
Views: 11822

I have purchased but have not received the download link

Hello Sergey,

I just want to ask, why I not receive the download link.
I have purchased the license of your product. Please check my PM. I have
sent to you the detail of my billing transaction.

Don't make me wait too long. :(

Regards,


Eko Indriyawan
by ekoindri
Wed Aug 04, 2010 8:42 am
Forum: Support
Topic: Can not create html correctly
Replies: 2
Views: 12667

Thank you very much for your hint.
Let me try it first, I hope this issue can be solve.

King regards,


Eko Indriyawan
by ekoindri
Wed Aug 04, 2010 6:31 am
Forum: Support
Topic: Can not create html correctly
Replies: 2
Views: 12667

Can not create html correctly

I have a problem to create html file.
I have downloaded the demo about how to save html format.
I also download the demo about how to insert table into TRichViewEdit.
When I create a table from template and save it to html, this process can
still work properly.
The problem raised when I try to copy ...
by ekoindri
Tue Aug 03, 2010 12:58 pm
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 248760

@Sergey Tkachenko

Thanks for your explanation. You're right, MS OutLook does not support for
showing the youtube video directly. It seems that I have to create it by
myself, so I do not need to use Microsoft Outlook anymore.

Any way, your code above has provided me a hint so useful to achieve this ...
by ekoindri
Tue Aug 03, 2010 3:55 am
Forum: Support
Topic: Importing html images and links
Replies: 6
Views: 26132

I'm sorry, I forgot to add PngImage on the uses clause.
Now, I can my application can work properly based on the demo above.
by ekoindri
Tue Aug 03, 2010 3:41 am
Forum: Support
Topic: How to save TRichViewEdit + Youtube as HTML file?
Replies: 2
Views: 12711

Thank you very much for your replies.
I'm very appreciate your effort.

King regards,


ekoindri
by ekoindri
Tue Aug 03, 2010 3:39 am
Forum: Support
Topic: Importing html images and links
Replies: 6
Views: 26132

I have tried to compile and run the demo above.
When I paste from webbrowser which contains png image, I can not see
the image shown in the TRichViewEdit correctly(I mean, I can not see the
image), but for another image format like jpg can be shown correctly.

What I have to do to achieve it.

thank ...
by ekoindri
Tue Aug 03, 2010 1:22 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 248760

@Sergey Tkachenko

Wow...your code above work properly.
Now, I have a problem.
When I sent it via email and I open it with Microsoft OutLook, I can not see
the youtube. What I have to do in order to see the video from email.

Actually, I want to send mass email to my friends and they can see the ...
by ekoindri
Mon Aug 02, 2010 9:40 am
Forum: Support
Topic: How to save TRichViewEdit + Youtube as HTML file?
Replies: 2
Views: 12711

How to save TRichViewEdit + Youtube as HTML file?

How to save TRichViewEdit + Youtube as HTML file?

I want to try to send email with youtube.

thank in advance
by ekoindri
Mon Aug 02, 2010 9:21 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 248760

Could you show me how to save TRichViewEdit + Youtube to HTML file?

Is this possible to be done?
If this can be realized, it will be so amazing.
by ekoindri
Wed Jun 02, 2010 5:50 pm
Forum: Support
Topic: How to Save and Load TRiceView as TStream?
Replies: 2
Views: 12950

Execelent !.

It works perfectly. I can save any rtf file to database and load it to
TRichView.

King regards,


Eko Indriyawan
by ekoindri
Sun May 30, 2010 10:27 pm
Forum: Support
Topic: How to Save and Load TRiceView as TStream?
Replies: 2
Views: 12950

How to Save and Load TRiceView as TStream?

I have tried to create a project that having purpose to save and
load TRichView as TStream.

Code for saving TRichView:
var
LocalStream: TStream;
begin
LocalStream := TMemoryStream.Create;
with SP_217SAVE do
begin
RichViewEdit1.SaveRTFToStream(LocalStream, False);
Tag := 0;
Tag := Tag + 1 ...