Search found 9850 matches

by Sergey Tkachenko
Sat May 02, 2026 10:49 am
Forum: Support
Topic: Scalerichview Hyperlink Underlinecolor black
Replies: 7
Views: 45546

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: 8
Views: 1498

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: 117998

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: 45546

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: 8
Views: 1498

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: 551

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: 8
Views: 1498

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: 551

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: 183277

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: 535

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: 2250

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: 3136

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: 3136

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 ...
by Sergey Tkachenko
Sat Mar 28, 2026 6:48 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 3136

Insertion from HTML, Markdown and RTF codes

Insertion of HTML, Markdown and RTF codes

Before this version, ReportWorkshop allowed inserting formatted documents (RTF, HTML, Markdown, DocX) only from database fields (memo and binary fields). It did not support converting string values into these formats.

In this update, you can specify that ...
by Sergey Tkachenko
Sat Mar 28, 2026 6:47 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 3136

Charts: User Interface

Charts: User Interface

The user interface is provided by a new action, TrvrActionInsertChart . When executed, it displays a dialog for defining chart properties. The dialog contains several pages, the most important of which are the first two.

On the first page, you select a chart template from ...