Search found 9845 matches

by Sergey Tkachenko
Sat Apr 25, 2026 1:14 pm
Forum: Support
Topic: AppendRVFFromStream and Controls
Replies: 3
Views: 421

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: 4
Views: 170

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

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

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

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

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

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

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

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

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

Charts: Document item

Charts: Document item

TRVReportChartItemInfo has the following properties.

The CatalogItemName property links this document item to an item in the catalog component's collection described above.

It is important to understand that only this string is stored in the RVF document; the actual chart ...
by Sergey Tkachenko
Sat Mar 28, 2026 6:31 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 1597

Charts. Chart catalog components

Charts

Charts are the main new feature of ReportWorkshop 7. They consist of two main parts:

The document item TRVReportChartItemInfo .
This item is inserted into the report template and is replaced with a final chart image during report generation. The item itself contains the data required to ...
by Sergey Tkachenko
Sat Mar 28, 2026 6:30 pm
Forum: Announcements
Topic: ReportWorkshop 7.0 - charts, SVG shapes
Replies: 6
Views: 1597

ReportWorkshop 7.0 - charts, SVG shapes

We are pleased to announce a new release of ReportWorkshop.

This update is free for customers who ordered ReportWorkshop in 2024-2026.

Trial version: https://www.trichview.com/download/

New features:

charts in reports
SVG shapes
insertion of formatted documents (HTML, Markdown, or RTF) in ...
by Sergey Tkachenko
Sun Mar 22, 2026 6:13 pm
Forum: Support
Topic: RvFontCombobox behavior with multiple fonts
Replies: 4
Views: 1557

Re: RvFontCombobox behavior with multiple fonts

These combo-boxes display the font of the current text style.
Yes, it was done for performance reasons.
by Sergey Tkachenko
Fri Mar 13, 2026 3:56 pm
Forum: RVMedia
Topic: Playing video files using RVCamera
Replies: 5
Views: 8024

Re: Playing video files using RVCamera

I need more time, sorry.