Search found 11 matches

by Darken
Thu Nov 13, 2014 3:31 pm
Forum: Support
Topic: Problem with hyperlink conversion with rvhtmlimport HTML2RVF
Replies: 2
Views: 12874

Или например

1я строка
2я строка

после сохранения в ХТМЛ формат и обратной конвертации в РВФ (из ХТМЛ) будте выглядеть. (то есть появится отступ во второй строке)

1я строка
__2я строка <- во второй строке отступ возникает (выше пробелы не сохранились)
by Darken
Thu Nov 13, 2014 3:29 pm
Forum: Support
Topic: Problem with hyperlink conversion with rvhtmlimport HTML2RVF
Replies: 2
Views: 12874

Problem with hyperlink conversion with rvhtmlimport HTML2RVF

Hello Sergey! I have proble with conversion HTML to RVF. In html bellow you can see hypelink with format (italic, bold and set other color, font name). When convert from HTML to RVF hyperlink format is lost... :( RvHtmlImp := TRvHtmlImporter.Create(RVEdit); RvHtmlImp.RichView := RVEdit; RvHtmlImp.En...
by Darken
Fri Oct 10, 2014 8:32 am
Forum: Support
Topic: How to exctact original images?
Replies: 4
Views: 16226

TRichViewEdit can save original image in jpeg, png etc. in original quality (as HTML with image). I'm used Envision editor, thats editor have TDibGraphic (that's override original class). When TPicture.UnregisterGraphicClass(TDibGraphic); everything was working! (так как TDibGraphic подгружался и пе...
by Darken
Fri Oct 10, 2014 8:18 am
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35521

Thank you Sergey, thats is work! :)
by Darken
Tue Oct 07, 2014 1:24 pm
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35521

I'm so sorry Sergey, but doesn't work... I'm prepare test project with GIF and PNG library. Image insert in RVF document good, but if paste from clibpoard RichViewEdit do nothing. http://softprostudio.com/Test_ClipboardIMAGE.7z unit main; interface uses Windows, Messages, SysUtils, Variants, Classes...
by Darken
Mon Oct 06, 2014 4:20 pm
Forum: Support
Topic: How to paste GIF from clipboard?
Replies: 11
Views: 35521

Hello Sergey!

I'm using TRichViewEdit with image, bmp, jpeg - good copy and paste from clipboard. But if copy gif or png image, paste doesn't work. (used TGIFImage, TPNGObject and Delphi 7).

rve.CopyDef - for copy
rve.Paste - for paste

Can you have decision? :roll:

Thank you Sergey!
by Darken
Mon Sep 15, 2014 8:09 pm
Forum: Support
Topic: How to exctact original images?
Replies: 4
Views: 16226

Thank you Sergey for quick answear and new question.

How to get original image file name? (if exist this possibility)
by Darken
Mon Sep 15, 2014 2:35 pm
Forum: Support
Topic: How to exctact original images?
Replies: 4
Views: 16226

How to exctact original images?

Hello Sergey! How to exctact original images from RichViewEdit? I have proble with jpeg image, very loss image quality... (Возможно существует способ извлечения оригинального изображения, в изначальном виде? Сейчас выходит что при сохранении в ХТМЛ формат, а потом обратной загрузке в RichViewEdit за...
by Darken
Thu Aug 14, 2014 2:14 pm
Forum: Support
Topic: How to, set cell border in table (show, hide) ?
Replies: 3
Views: 14317

Thank you Sergey for quick answer. But I have new question. When I'm select cell's of table (multiselect), how catch event? (when select complete). OnCurTextStyleChanged - work only for non selected tables cells. Maybe exist best desion for catch event, when user complete select cells in table? Than...
by Darken
Tue Aug 12, 2014 2:54 pm
Forum: Support
Topic: How to, set cell border in table (show, hide) ?
Replies: 3
Views: 14317

How to, set cell border in table (show, hide) ?

Hello Sergey! I'm insert table in RichViewEdit, and need set show or hide borders as MS Word. (I'm need use drop down list as Word) var table: TRVTableItemInfo; r, c: integer; begin table := TRVTableItemInfo.CreateEx(Y + 1, X + 1, RVE.RVData); table.Color := clNone; table.BorderStyle := rvtbColor; t...
by Darken
Thu Jul 24, 2014 11:38 am
Forum: Support
Topic: Undo of set editor background
Replies: 10
Views: 38830

Hello Sergey! I have problem with undo/redo. I'm edit inserted image in my image Editor. But if base image changes undo does't work. ----------------------- var gr: TGraphic; bmp: TBitmap; ---------------------- gr := RVE.GetSelectedImage; if gr = nil then exit; bmp := TBitmap.Create; bmp.Assign(gr)...