Search found 9852 matches

by Sergey Tkachenko
Tue May 05, 2026 9:15 am
Forum: Support
Topic: Table Cell Style
Replies: 2
Views: 43

Re: Table Cell Style

Sorry, table and cells styles are not implemented.
Use paragraph styles (StyleTemplates).
by Sergey Tkachenko
Sun May 03, 2026 12:48 pm
Forum: Support
Topic: Issue with Copying Images from RichView (RVF)
Replies: 10
Views: 1781

Re: Issue with Copying Images from RichView (RVF)

The exception is ok, it is by design. It's not noticeable unless debugging.
But the leak is a bug.

Please open RVClipboard.pas. In the function RVSetBitmapToClipboard, change:
if (Bmp <> nil) and (RVGraphicHandler.GetGraphicType(Bmp) <> rvgtBitmap) then
begin
try
Result ...
by Sergey Tkachenko
Sat May 02, 2026 10:49 am
Forum: Support
Topic: Scalerichview Hyperlink Underlinecolor black
Replies: 7
Views: 45797

Re: Scalerichview Hyperlink Underlinecolor black

Fixed in ScaleRichView 12.5.3.
by Sergey Tkachenko
Sat May 02, 2026 9:59 am
Forum: Support
Topic: Issue with Copying Images from RichView (RVF)
Replies: 10
Views: 1781

Re: Issue with Copying Images from RichView (RVF)

Included in TRichView 24.1.3.
by Sergey Tkachenko
Sat May 02, 2026 9:58 am
Forum: Announcements
Topic: TRichView 24 - RAD Studio 13 Florence, chat, background
Replies: 7
Views: 118557

TRichView 24.1.3

TRichView 24.1.3

This update improves clipboard image support in the Windows version of TRichView.

Previously, the components supported copying and pasting only TMetafile and TBitmap images. Now:


clipboard copying implemented in graphic classes is supported (most classes copy images in ...
by Sergey Tkachenko
Mon Apr 27, 2026 10:44 am
Forum: Support
Topic: Scalerichview Hyperlink Underlinecolor black
Replies: 7
Views: 45797

Re: Scalerichview Hyperlink Underlinecolor black

The problem is in not restoring Canvas.Pen.Mode to pmCopy after using BorderPen. It will be fixed in the next update.
by Sergey Tkachenko
Sun Apr 26, 2026 3:53 pm
Forum: Support
Topic: Issue with Copying Images from RichView (RVF)
Replies: 10
Views: 1781

Re: Issue with Copying Images from RichView (RVF)

You are right, TSkGraphic and TSkSvgGraphic must not be assigned to the Clipboard. And the only way to check for these classes is comparing class names.
These classes have an empty implementation of SaveToClipboardFormat method; and TClipboard does not expect it. As a result, uninitialized variables ...
by Sergey Tkachenko
Sat Apr 25, 2026 1:14 pm
Forum: Support
Topic: AppendRVFFromStream and Controls
Replies: 3
Views: 669

Re: AppendRVFFromStream and Controls

Try debugging.
Open RVItem.pas.
Find the code in function TRVControlItemInfo.ReadRVFLine:

ControlClassName := RVU_AnsiToString(s);
ControlClass := TControlClass(GetClass(ControlClassName));
if ControlClass <> nil then
begin
Control := ControlClass.Create(nil);
Control.Visible := False ...
by Sergey Tkachenko
Sat Apr 25, 2026 1:08 pm
Forum: Support
Topic: Issue with Copying Images from RichView (RVF)
Replies: 10
Views: 1781

Re: Issue with Copying Images from RichView (RVF)

In the current version of the components, only TBitmap and TMetafile copying is implemented.
This is not a good solution, since some other graphic classes also support copying to the clipboard. For example, TJPEGImage (used in your document) and TWICImage copy as TBitmap, while TGIFImage copies in ...
by Sergey Tkachenko
Mon Apr 20, 2026 1:45 pm
Forum: Support
Topic: AppendRVFFromStream and Controls
Replies: 3
Views: 669

Re: AppendRVFFromStream and Controls

Classes of all controls used in RVF must be registered before the first loading.
Such as:
RegisterClasses([TButton, TEdit]);

There must be no difference between LoadRVFFromStream and AppendRVFFromStream. Internally, they call the same method for loading content.
Do not forget to call Format after ...
by Sergey Tkachenko
Fri Apr 03, 2026 3:12 pm
Forum: Support
Topic: Extra Space Added in Empty Lines in Markdown Component
Replies: 11
Views: 183574

Re: Extra Space Added in Empty Lines in Markdown Component

The new option (removing non-breaking spaces from empty lines read from HTML, Markdown, RTF, and DocX) works by default.
It can be turned off by assigning False to RichViewRemoveNbSpAfterImport (global variable from CRVData.pas)
by Sergey Tkachenko
Thu Apr 02, 2026 1:57 pm
Forum: Support
Topic: Different Handling overriting links in trichview
Replies: 2
Views: 638

Re: Different Handling overriting links in trichview

Overwrite the hyperlink while keeping the same target.
How exactly I need to overwrite the hyperlink?
If I select the whole line (hyperlink + trailing non-hyperlink spaces), new typed characters will have style of non-hyperlink spaces.
by Sergey Tkachenko
Thu Apr 02, 2026 1:49 pm
Forum: ScaleRichView
Topic: Purchase
Replies: 1
Views: 2530

Re: Purchase

There is a special page for ordering add-ons and renewals.
I answered in the private message.
by Sergey Tkachenko
Sat Mar 28, 2026 6:51 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 3495

Changes in demo projects

New demo projects


VCL:

Delphi\FireDAC\7 - Chart\ (FireDAC components + InterBase DB + TRVReportTeeChart)
Delphi\IBX\7 - Chart\ (InterBase Express components + InterBase DB + TRVReportTeeChart)
Delphi\DevExpress\Chart\ (FireDAC components + InterBase DB + TRVReportDxChart)

FireMonkey ...
by Sergey Tkachenko
Sat Mar 28, 2026 6:49 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 3495

SVG Shapes

SVG shapes

ReportWorkshop uses shapes. Their primary purpose is to visualize values within table cells. For example, you can specify that a certain shape should be repeated a number of times proportional to a value (such as a star rating).

Shapes can also be used as components and as TRichView ...