Search found 9405 matches

by Sergey Tkachenko
Thu Apr 18, 2024 11:18 am
Forum: Announcements
Topic: ReportWorkshop 6.0 - FireMonkey
Replies: 3
Views: 12

Report generation in a background thread

Report generation in a background thread Generating in the main process If you need to generate a small report, just call RVReportGenerator. Execute . But if a report is large, generation may take some time. If you do nothing, your application will be frozen while a report is being generated. To pr...
by Sergey Tkachenko
Thu Apr 18, 2024 11:18 am
Forum: Announcements
Topic: ReportWorkshop 6.0 - FireMonkey
Replies: 3
Views: 12

FireMonkey demo projects for ReportWorkshop

FireMonkey demo projects The following demo projects are available for FireMonkey LiveBindings\AdapterBindSource and LiveBindings\PrototypeBindSource These projects show how to use LiveBindings to provide data for reports. MongoDB\Restaurants The demo uses 'restaurants' collection from 'test' Mongo...
by Sergey Tkachenko
Thu Apr 18, 2024 11:17 am
Forum: Announcements
Topic: ReportWorkshop 6.0 - FireMonkey
Replies: 3
Views: 12

Re: ReportWorkshop 6.0 - FireMonkey

FireMonkey FireMonkey version of ReportWorkshop supports the same platforms as FireMonkey version of TRichView (it includes all platforms in RAD Studio 11 and 12). What is ported: report generation, including: TRVReportGenerator component TRVReportDBDataProvider component (providing data from a col...
by Sergey Tkachenko
Thu Apr 18, 2024 11:11 am
Forum: Announcements
Topic: ReportWorkshop 6.0 - FireMonkey
Replies: 3
Views: 12

ReportWorkshop 6.0 - FireMonkey

We have released ReportWorkshop 6.0 - rich text reporting components based on our TRichView editor. This update is free for customers who ordered ReportWorkshop in 2022, 2023, and 2024. Main changes after the last update: FireMonkey (all platforms) report generation in a background thread Other sign...
by Sergey Tkachenko
Wed Apr 17, 2024 11:39 am
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 15
Views: 2295

Re: merge items in RV17.6.2--RV22

Fixed in version 22.3
by Sergey Tkachenko
Sat Apr 13, 2024 9:04 am
Forum: Support
Topic: Empty text item possible?
Replies: 5
Views: 1007

Re: Empty text item possible?

But empty text items cannot interact with a mouse pointer as well, because they have zero size.
Visibility of hidden items can be switched on and off.
by Sergey Tkachenko
Fri Apr 12, 2024 8:39 pm
Forum: Support
Topic: Empty text item possible?
Replies: 5
Views: 1007

Re: Empty text item possible?

It may be removed only:
- when the user edits this paragraph (it includes calling editing methods that modify this paragraph).
- when inserting this content in another document.
Otherwise, it's ok to use empty text item.
Another solution is using hidden items.
by Sergey Tkachenko
Fri Apr 12, 2024 8:36 pm
Forum: Support
Topic: Text not visible for some demo on IOS 16.7
Replies: 1
Views: 530

Re: Text not visible for some demo on IOS 16.7

I believe this is really a style issue. If you do not specify TRichViewEdit.Color (it is Null by default), no special background will be drawn, and a background from FMX style will be used ("memostyle" by default). As for text color, it is defined in TRVStyle.TextStyles[], and Black for no...
by Sergey Tkachenko
Fri Apr 12, 2024 8:09 pm
Forum: Support
Topic: Empty text item possible?
Replies: 5
Views: 1007

Re: Empty text item possible?

It is possible to add it in code. But on editing, it may be removed.
You can try using a text style having EmptyWidth = 1.
by Sergey Tkachenko
Tue Apr 09, 2024 11:15 am
Forum: Support
Topic: Now Getting Runtime Error 236 on Delphi Start
Replies: 12
Views: 25086

Re: Now Getting Runtime Error 236 on Delphi Start

Try to turn off update checking.
Open regedit. In HKEY_CURRENT_USER\SOFTWARE\TRichView, change AllowCheck = 0.
by Sergey Tkachenko
Mon Apr 08, 2024 3:29 pm
Forum: Support
Topic: Now Getting Runtime Error 236 on Delphi Start
Replies: 12
Views: 25086

Re: Now Getting Runtime Error 236 on Delphi Start

Do you have the newest version of TRichView?
by Sergey Tkachenko
Sat Apr 06, 2024 12:23 pm
Forum: Announcements
Topic: About RAD Studio 12.1 compatibility
Replies: 0
Views: 1485

About RAD Studio 12.1 compatibility

RAD Studio 12.1 is completely compatible with RAD Studio 12.0.
You can use the existing version of TRichView and RVMedia (both the trial and the full version), no changes in the components or installers are required.
by Sergey Tkachenko
Tue Apr 02, 2024 10:38 am
Forum: Support
Topic: Numbered lists, wrong font after load / save
Replies: 5
Views: 20744

Re: Numbered lists, wrong font after load / save

Actually, TRichView already does adjustment of some font properties for the first list marker. But it does not do it for a font name.
It's more complicated, because fonts name of bullets should not be adjusted. I need more time. Not in the next update, sorry.
by Sergey Tkachenko
Sat Mar 30, 2024 6:55 pm
Forum: Support
Topic: Math Support
Replies: 2
Views: 1623

Re: Math Support

TRVMathItemInfo has AsBitmap method:
function TRVMathItemInfo.AsBitmap(RVData: TCustomRVData; FillColor: TColor): TBitmap;
by Sergey Tkachenko
Fri Mar 29, 2024 9:16 am
Forum: Examples, Demos
Topic: [Demo] Editors in editors
Replies: 16
Views: 47823

Re: [Demo] Editors in editors

Maybe you call Reformat instead of Format?