Search found 110 matches

by wolf1860
Thu Mar 03, 2022 3:28 am
Forum: Support
Topic: LineSpacing between table and text does not work
Replies: 2
Views: 2287

LineSpacing between table and text does not work

Code: Select all

  rve.ClearUndo;
  rve.DeleteUnusedStyles(True, True, True);
  for var i := 0 to rve.Style.ParaStyles.Count - 1 do
  begin
    rve.Style.ParaStyles[i].LineSpacingType := rvlsPercent;
    rve.Style.ParaStyles[i].LineSpacing := 150;
  end;
  rve.Format;
Image
by wolf1860
Wed Mar 02, 2022 8:11 pm
Forum: Support
Topic: Paste text and picture from office word,pictures changed crude
Replies: 14
Views: 5999

Paste text and picture from office word,pictures changed crude

I select some text and pictures then ctrl+c ,when I pasted to the TRichViewEdit,some pictures changed crude.Sometimes the same action is right in TSRichViewEdit. Single picture,none text ,the result is right. In TSRichViewEdit: https://wolf1860.com/images/ImageInRVE.png In TRichViewEdit: https://wol...
by wolf1860
Thu Feb 10, 2022 3:55 pm
Forum: Support
Topic: SynPDF+TSRichViewEdit,The inline-Images are deformed
Replies: 10
Views: 5902

Re: SynPDF+TSRichViewEdit,The inline-Images are deformed

Thank u again:) I found TRVPrint export pdf worked fine:Just need set the margins property,so I avoided the problem.That's enough:) By the way,LLibPDF is not stable for me when I try to export many rvf files,SynPDF is perfect. I have bought the update license:)
by wolf1860
Mon Feb 07, 2022 2:05 am
Forum: Support
Topic: SynPDF+TSRichViewEdit,The inline-Images are deformed
Replies: 10
Views: 5902

Re: SynPDF+TSRichViewEdit,The inline-Images are deformed

I have sent the test file to [email protected](Test rvf file for TSRichViewEdit.DrawPage(SynPDF)).
by wolf1860
Sun Feb 06, 2022 4:53 pm
Forum: Support
Topic: SynPDF+TSRichViewEdit,The inline-Images are deformed
Replies: 10
Views: 5902

SynPDF+TSRichViewEdit,The inline-Images are deformed

I call TSRichViewEdit.DrawPage method to export PDF file by SynPDF library.All the inline-images are deformed.like this,the other images are right.
I tested TRVPrint.DrawPage,the inline-images are right.
I have no idea whether u can help me....


Image
by wolf1860
Sun Feb 06, 2022 12:26 pm
Forum: Support
Topic: TRVPrintPreview lost pagesetup options of the rvf file
Replies: 5
Views: 3171

Re: TRVPrintPreview lost pagesetup options of the rvf file

Thanks a lot first! As I said,I want to export the content of TSrichViewEdit to PDF and I want the pdf's layout as same as the rvf looks in TSRichViewEdit.what should I do?Can u give me some demo code? By the way ,I changed the margin properties after load rvf that saved from TSRichViewEdit in the d...
by wolf1860
Sat Feb 05, 2022 11:21 am
Forum: Support
Topic: TRVPrintPreview lost pagesetup options of the rvf file
Replies: 5
Views: 3171

Re: TRVPrintPreview lost pagesetup options of the rvf file

It looks like a bug.After load rvf file,I changed the TRVPrint.Margins by code and tested: 1) when LeftMarginMM:=0 and RightMarginMM:=0 ,the content preview looks as same as the rvf's real display,maybe TRVprint calculate them twice.The header and footer changed leftmargin/rightmarin to 0,they alway...
by wolf1860
Fri Feb 04, 2022 6:55 pm
Forum: Support
Topic: TRVPrintPreview lost pagesetup options of the rvf file
Replies: 5
Views: 3171

TRVPrintPreview lost pagesetup options of the rvf file

I need export rvf file to PDF. In the demo : RVSynPDFDemo, when I open the rvf file in TRVPrintPreview, the content layout is different from the display in SRichViewEdit. My export need high-precision,what should I do? I have emailed u my test rvf file. Display in srichviewEdit: https://www.wolf1860...
by wolf1860
Thu Mar 12, 2020 6:34 pm
Forum: ScaleRichView
Topic: Strange exception of TSRichViewEdit.SubDocuments
Replies: 4
Views: 46754

Re: Strange exception of TSRichViewEdit.SubDocuments

Copy it ! thanks a lot:)
by wolf1860
Wed Mar 11, 2020 4:10 pm
Forum: ScaleRichView
Topic: Strange exception of TSRichViewEdit.SubDocuments
Replies: 4
Views: 46754

Re: Strange exception of TSRichViewEdit.SubDocuments

Sorry,I forgot the NewItemAction event.
Then,how can I determine if the item is in the subdocuments,or it is in the TSRichviewEdit.RichviewEdit's content?
by wolf1860
Wed Mar 11, 2020 1:03 pm
Forum: ScaleRichView
Topic: Strange exception of TSRichViewEdit.SubDocuments
Replies: 4
Views: 46754

Strange exception of TSRichViewEdit.SubDocuments

I handled subdocuments with the following procedure ,sRveExport is a TSRichviewEdit, it worked perfect until today. Exception message is : list index out of bounds(-1),exception only occured on the header file's loading when "loadRVF",the footer file's loading is right,what I missed? proce...
by wolf1860
Sun Feb 23, 2020 9:41 am
Forum: Support
Topic: TSRichViewEdit Insert a hyperlink to a cell
Replies: 2
Views: 14877

Re: TSRichViewEdit Insert a hyperlink to a cell

Sorry,I forgot that there was a default method to handle the click event,so everything is ok:) thanks!
by wolf1860
Sun Feb 23, 2020 7:58 am
Forum: Support
Topic: TSRichViewEdit Insert a hyperlink to a cell
Replies: 2
Views: 14877

TSRichViewEdit Insert a hyperlink to a cell

A TSRichViewEdit(in a frame),I set its externalRVStyle property, and use the codes to insert a hyperlink to jump to a url. table.Cells[4, 1].AddNL('http://www.wolf1860.com',4,-1); when click the hyperlink,it just open my application's root directory automatically,but not run the TSRichviewEdit.onjum...