Search found 9511 matches

by Sergey Tkachenko
Fri Nov 08, 2024 2:25 pm
Forum: RVMedia
Topic: TRvCam und WebRTC
Replies: 1
Views: 212

Re: TRvCam und WebRTC

I am sorry, I never worked with WebRTC, so I am not sure. But RVMedia can use FFmpeg and GStreamer.
If you will be able to play WebRTF source with command-line tools of these libraries, they it means that it can be played by RVMedia too.
by Sergey Tkachenko
Thu Oct 31, 2024 8:02 am
Forum: Support
Topic: Display html formatted text?
Replies: 1
Views: 955

Re: Display html formatted text?

Our TRichView component can display documents in HTML, RTF and DocX format (for HTML, layout should not be based on floating <div>, they are not supported). Simple reports can be generated just with TRichView, without add-ons, see https://www.trichview.com/forums/viewtopic.php?t=8 If you need more ...
by Sergey Tkachenko
Wed Oct 30, 2024 8:55 am
Forum: Announcements
Topic: About Payment Processing
Replies: 1
Views: 2483

Re: About Payment Processing

After receiving several payments via EasyStart service, I decided to make it official and added a payment form on https://www.trichview.com/order/
I'm still working to add more payment systems.
by Sergey Tkachenko
Mon Oct 21, 2024 7:53 am
Forum: Announcements
Topic: About Payment Processing
Replies: 1
Views: 2483

About Payment Processing

As you may have seen on the website, payment acceptance is temporarily suspended. It will be restored, but this may take some time. If you need to pay for your order urgently, you can use a temporary solution: payment through the EasyStart/EasyStaff service, which normally works with remote ...
by Sergey Tkachenko
Wed Oct 16, 2024 1:46 pm
Forum: Support
Topic: Markdown on Firemonkey version ?
Replies: 3
Views: 3767

Re: Markdown on Firemonkey version ?

Thank you!
I'll fix the demos in the next update.
by Sergey Tkachenko
Tue Oct 15, 2024 6:07 pm
Forum: Support
Topic: Markdown on Firemonkey version ?
Replies: 3
Views: 3767

Re: Markdown on Firemonkey version ?

Markdown loading is identical in VCL and FireMonkey version. The problem is in distinguishing text and markdown files. In VCL, the program can use the open dialog's FilterIndex property to know which format is chosen. In FireMonkey, it cannot (this property cannot be used). So, the demo recognizes ...
by Sergey Tkachenko
Thu Oct 10, 2024 1:22 pm
Forum: Support
Topic: ReportBuilder 22.05, TRichView and table problem
Replies: 1
Views: 3469

Re: ReportBuilder 22.05, TRichView and table problem

The problem with drawing tables and underlines in PDF export in new version of ReportBuilder was already reported.

Digital Metaphors sent a patch for me. I did not check it myself, thought.
I'll send it to you by email.
by Sergey Tkachenko
Thu Oct 10, 2024 12:27 pm
Forum: Support
Topic: Fastest way to get text from an RichViewEdit
Replies: 1
Views: 2096

Re: Fastest way to get text from an RichViewEdit

The main difference is not in speed. RVGetTextRange and SaveTextToStreamW produce different text. SaveTextToStreamW produces text for saving to text files. Non-text items are saved as their text representation. RVGetTextRange produces text that has 1:1 correspondence to the document (knowing the ...
by Sergey Tkachenko
Thu Sep 12, 2024 6:42 pm
Forum: Support
Topic: RVPrint.OnPrintComponent
Replies: 2
Views: 7596

Re: RVPrint.OnPrintComponent

I am sorry for the inconvenience.
For VCL, TRVBitmap is defined in RVClasses unit (and = TBitmap)
For FMX, TRVBitmap is defined in fmxRVClasses unit (as a special class)
by Sergey Tkachenko
Tue Sep 03, 2024 9:31 am
Forum: Support
Topic: Components WorkWhop Report for Delphi Linux Unigui and Apache
Replies: 4
Views: 8268

Re: Components WorkWhop Report for Delphi Linux Unigui and Apache

I you can create Delphi application with FMX Linux for this OS, am sure that TRichView and ReportWorkshop will work on it as well.
The only specific Linux requirement for TRichView: pango library version at least 1.44 must be installed.
by Sergey Tkachenko
Tue Sep 03, 2024 8:34 am
Forum: Support
Topic: Components WorkWhop Report for Delphi Linux Unigui and Apache
Replies: 4
Views: 8268

Re: Components WorkWhop Report for Delphi Linux Unigui and Apache

Sorry, the components were not tested on a server environment. However, Linux is supported (FMXLinux is required), and all FireMonkey demo projects for ReportWorkshop can be compiled and ran on Linux. If you do not need a user interface, you can use a non-visual component TRVReportHelper.RichView ...
by Sergey Tkachenko
Thu Aug 29, 2024 11:33 am
Forum: Support
Topic: Problem after upgrading ReportBuilder
Replies: 1
Views: 5684

Re: Problem after upgrading ReportBuilder

Run "Install TRichView VCL in Delphi IDE" from Windows Start menu.
It will recompile the TRichView+ReportBuilder integration package.

The advice above works if you upgraded ReportBuilder from another 22.x version. If you upgraded from an older version, re-run TRichView setup.
by Sergey Tkachenko
Thu Aug 29, 2024 9:35 am
Forum: Support
Topic: Use TRichViewEdit as a simple code editor?
Replies: 6
Views: 11519

Re: Use TRichViewEdit as a simple code editor?

This example draws line numbers on the left margin. Just make sure that value of LeftMargin property is large enough.
It's only a drawing, so these numbers are not considered as a part of a document.
by Sergey Tkachenko
Wed Aug 28, 2024 12:03 pm
Forum: Support
Topic: RichViewEdit input string under the original horizontal line problem
Replies: 9
Views: 34640

Re: RichViewEdit input string under the original horizontal line problem

I am sorry, but additional parameters defining the shift of coordinates were still not added :( Probably, one more custom painting item would be a better solution than modifying OnParaBack. I'll add it in the next update. I can send a beta version to you if you need it sooner; please remind me after ...
by Sergey Tkachenko
Wed Aug 28, 2024 11:46 am
Forum: Support
Topic: Use TRichViewEdit as a simple code editor?
Replies: 6
Views: 11519

Re: Use TRichViewEdit as a simple code editor?

This code shows how to draw line numbers in FireMonkey version of TRichView: https://www.trichview.com/forums/viewtopic.php?p=45845#p45845 But if you want to implement not only simple text coloring, but syntax highlighting, it is much more complicated task. In TRichViewEdit, you can change colors ...