Search found 9648 matches

by Sergey Tkachenko
Wed Apr 02, 2025 3:36 pm
Forum: Support
Topic: printing with SRichViewEdit
Replies: 8
Views: 21668

Re: printing with SRichViewEdit

Do you want to clear all printing jobs in progress (probably created by other applications?)
I think this is a very bad idea.
But it looks like it is possible. See https://learn.microsoft.com/en-us/windows/win32/printdocs/printing-and-print-spooler-functions
As I can see, you can enumerate jobs ...
by Sergey Tkachenko
Wed Apr 02, 2025 2:04 pm
Forum: Support
Topic: Inline Images
Replies: 2
Views: 3049

Re: Inline Images

What components do you use to save HTML email?
We have demos that use Indy, CleverComponents, and Outlook COM object.
by Sergey Tkachenko
Wed Apr 02, 2025 1:59 pm
Forum: Examples, Demos
Topic: [Demo] Making PDF with table of contents using LLPDFLib
Replies: 10
Views: 205714

Re: [Demo] Making PDF with table of contents using LLPDFLib

If you want to export from TSRichViewEdit, you should not use this demo.
This demo uses TRVPrint for pagination, and it may be different from pagination made by ScaleRichView, and does not provide WYSIWYG.

ScaleRichView+LLPDFLib demo is included in ScaleRichView installation.
See the folder ...
by Sergey Tkachenko
Wed Apr 02, 2025 1:56 pm
Forum: Support
Topic: printing with SRichViewEdit
Replies: 8
Views: 21668

Re: printing with SRichViewEdit

These features (loading formats and spelling checking) do not affect printing.
What exactly do you mean by "another printout comes out?"
by Sergey Tkachenko
Mon Mar 31, 2025 2:37 pm
Forum: Support
Topic: printing with SRichViewEdit
Replies: 8
Views: 21668

Re: printing with SRichViewEdit

Can the problem be reproduced in ActionTest demo?
by Sergey Tkachenko
Sun Mar 30, 2025 3:26 pm
Forum: Examples, Demos
Topic: [Demo] Making PDF with table of contents using LLPDFLib
Replies: 10
Views: 205714

Re: [Demo] Making PDF with table of contents using LLPDFLib

Was this PDF created in ScaleRichView?
There are two kinds of margins in RVF documents: page margins + document margins.
Page margins are like in RTF and DocX.
Document margins are like <body> margins in HTML (they do not exist in RTF and DocX files).
In the current version, ScaleRichView saves ...
by Sergey Tkachenko
Fri Mar 28, 2025 6:24 am
Forum: Examples, Demos
Topic: [Demo] Making PDF with table of contents using LLPDFLib
Replies: 10
Views: 205714

Re: [Demo] Making PDF with table of contents using LLPDFLib

Please send me an example of a problematic RVF file.
by Sergey Tkachenko
Thu Mar 27, 2025 9:09 am
Forum: Support
Topic: Need help in Loading HTML using RVHtmlImporter
Replies: 2
Views: 8225

Re: Need help in Loading HTML using RVHtmlImporter

RvHtmlImporter1 is an obsolete component; it supports only basic HTML formatting.
Use this code:

Code: Select all

var
  Stream: TStringStream.

RichViewEdit1.Clear;
Stream:=TStringStream.Create(memo1.Text, TEncoding.UTF8);
RichViewEdit1.LoadHTMLFromStream(Stream, '', CP_UTF8);
RichViewEdit1.Format;
Stream.Free;
by Sergey Tkachenko
Wed Mar 26, 2025 6:51 pm
Forum: Support
Topic: Addict Spell
Replies: 2
Views: 32489

Re: Addict Spell

Use TRVSpellChecker. It uses the build-in Windows spelling checking interfaces.
by Sergey Tkachenko
Tue Mar 25, 2025 1:53 pm
Forum: Support
Topic: emoji icon
Replies: 1
Views: 13433

Re: emoji icon

Text engines used by VCL version of TRichView do not support colored emoticons. FireMonkey version does.
by Sergey Tkachenko
Mon Mar 24, 2025 2:56 pm
Forum: Support
Topic: Copied tables from richedits are displayed incorrectly
Replies: 1
Views: 11598

Re: Copied tables from richedits are displayed incorrectly

It's not the direction that matters.
There two kinds of selection:
1. Table as a whole object. You can select the table as a whole object (maybe together with surrounding items, or maybe only the table). You can start selection to the left of the table and end to the right of it. Or vice versa. Or ...
by Sergey Tkachenko
Thu Mar 20, 2025 5:58 pm
Forum: Support
Topic: cloudfare
Replies: 2
Views: 33329

Re: cloudfare

I am sorry, but the forum is under a DOS attack.
I'll remove this protection when it will be possible.
by Sergey Tkachenko
Tue Mar 18, 2025 6:44 am
Forum: Support
Topic: Table and print width
Replies: 3
Views: 49511

Re: Table and print width

Probably this document was modified before printing, because in the file that you sent to me word-wrapping is not turned off, in the cell width is 343 pixels.
by Sergey Tkachenko
Mon Mar 17, 2025 5:33 pm
Forum: Support
Topic: Does QRRichView component exist for FastReport in Delphi 10.3?
Replies: 1
Views: 13222

Re: Does QRRichView component exist for FastReport in Delphi 10.3?

TQRDBRichView is defined in RVQRCtrls, located in <TRichView Dir>\ThirdParty\QuickReport\Source\
This class is for QuickReport, not for FastReport.
Sorry, FastReport is not officially supported by TRichView.

For RV+QR integration, there are packages for Delphi from 2007 to 12.x. They expect ...
by Sergey Tkachenko
Mon Mar 17, 2025 5:11 pm
Forum: Support
Topic: Table and print width
Replies: 3
Views: 49511

Re: Table and print width

In this table, there are some cells that cannot be made narrower.
These are 3 cells containing images, and the cell with text "Nom de naissance: DESMAUX...". The latter cell has fixed BestWidth property (=343 pixels at 96 dpi) and it is the main problem, because this is the widest unshrinkable cell ...