Search found 6 matches

by huafeifei
Mon Jul 31, 2006 7:58 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35619

You do great job in developing the components.

Hope them to be more simply to use.
by huafeifei
Mon Jul 31, 2006 7:51 am
Forum: Support
Topic: About URL auto detection
Replies: 1
Views: 8630

About URL auto detection

It seems TRichViewEdit can't detect URL. I'd like to implement a chat application with TRichViewEdit. It looks like MSN/SKYPE. For provide friendly GUI, hope to support URL auto detection and GIF/JPEG copy/paste opertion(solved). If use Trichedit component in DELPHI, it can implement URL auto detect...
by huafeifei
Thu Jul 27, 2006 3:27 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35619

Problem solved! Share tip code here. Acctually, clipboard copy image(jpeg/gif/bmp) operation from browser or harddisk will save file as bitmap(CF_BITMAP), at the same time, save file to hard disk and filename to CF_HDROP. Use Clipboard.HasFormat(CF_HDROP) and DragQueryFile to get filename in harddi...
by huafeifei
Thu Jul 27, 2006 1:31 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35619

Thanks for your reply.

Some popular software can paste gif image from clipboard, like acdsee, outlook.

Is there any tips to solve this problem?


I will try with htmlimporter.
by huafeifei
Wed Jul 26, 2006 9:42 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35619

Try with code belowing, can paste image, but no animation. try pic := TPicture.Create; try // pic.LoadFromFile(OpenDialog1.FileName); pic.Bitmap.Assign(Clipboard); pic.SaveToFile('c:\a.gif');//debug information gr := RV_CreateGraphics(TGraphicClass(pic.Graphic.ClassType)); gr.Assign(pic); finally pi...
by huafeifei
Wed Jul 26, 2006 9:13 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35619

How to paste GIF from clipboard?

First copy a GIF file from some webpage in IE/Firefox browser, then paste into tRichViewEdit. tRichViewEdit recognize the GIF file as bitmap, and no animation! RVGifAnimate unit is included, but doesn't work. How can I display GIF when paste a GIF file from clipboard? And show it animated and transp...