Search found 9390 matches

by Sergey Tkachenko
Sat Dec 30, 2023 8:14 pm
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 109095

Re: Leak Using rvActionOpen

Yes, you are right. I corrected it.
by Sergey Tkachenko
Sat Dec 30, 2023 7:28 pm
Forum: Support
Topic: Fatal error compiling x64 in RAD Studio 11.3/12
Replies: 5
Views: 64686

Re: Fatal error compiling x64 in RAD Studio 11.3/12

The fix is included in TRichView 22.1.1 (currently available only for registered users)
by Sergey Tkachenko
Sat Dec 30, 2023 7:25 pm
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 109095

Re: Leak Using rvActionOpen

The fix is included in TRichView 22.1.1 (currently available only for registered users)
by Sergey Tkachenko
Sat Dec 30, 2023 4:37 pm
Forum: Support
Topic: print preview and page setup actions
Replies: 1
Views: 34871

Re: print preview and page setup actions

As for non-linked actions, they are linked implicitly. When ActionPreview needs ActionPageSetup and it is not assigned, it searches on the same form and uses the first found ActionPageSetup. The same happens for almost all links between RichViewActions. I'll check the problem with explicitly defined...
by Sergey Tkachenko
Sat Dec 23, 2023 12:31 pm
Forum: RVMedia
Topic: OnEndVideoStream Event to detect a disconnection
Replies: 5
Views: 83672

Re: OnEndVideoStream Event to detect a disconnection

RVMedia does not set timeout properties for GStreamer video sources, so default timeouts are used.

I can suggest changes in RVMedia source code to set timeout. But these changes are different for different protocols (HTTP(S) / RTSP / UDP)
What video protocol do you use?
by Sergey Tkachenko
Fri Dec 22, 2023 1:28 pm
Forum: Support
Topic: Up -> Down -> Not Where You Started
Replies: 3
Views: 32197

Re: Up -> Down -> Not Where You Started

Sorry, no.

And I just tried with the new version in MS Word and found that it does not return to the same position after even one PageDown + PageUp.
by Sergey Tkachenko
Fri Dec 22, 2023 1:21 pm
Forum: Support
Topic: Import text from Adobe InDesign files into TRichView
Replies: 1
Views: 12290

Re: Import text from Adobe InDesign files into TRichView

Sorry, no.
At least I do not know how.
by Sergey Tkachenko
Sun Dec 17, 2023 6:23 pm
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 109095

Re: Leak Using rvActionOpen

I confirm the problem. Quick fix (VCL/LCL version): Open RVRTFProps.pas Change the code starting from the line 2764 from if (InsertPoint > 0) and item.SameAsPrev and (item.StyleNo >= 0) and (CurrentRVData.GetItemStyle(InsertPoint - 1)= item.StyleNo) then to if (InsertPoint > 0) and item.SameAsPrev a...
by Sergey Tkachenko
Fri Dec 15, 2023 12:39 pm
Forum: RVMedia
Topic: OnEndVideoStream Event to detect a disconnection
Replies: 5
Views: 83672

Re: OnEndVideoStream Event to detect a disconnection

Do you play video stream using FFmpeg?
Try to assign RVCamera.FFMPEGProperty.TimeOut = timeout in seconds
by Sergey Tkachenko
Fri Dec 15, 2023 12:33 pm
Forum: Support
Topic: saving bullets to html with spcecial imagename
Replies: 1
Views: 18242

Re: saving bullets to html with spcecial imagename

It must be the default behavior: for all bullet items with the same ImageList and ImageIndex, a single image file is saved. It may be different only if bullets are displayed on different background color (because if bullets are saved as non-transparent images, a background color is drawn in images) ...
by Sergey Tkachenko
Sat Dec 09, 2023 10:42 am
Forum: Support
Topic: Table Font size
Replies: 3
Views: 15646

Re: Table Font size

Use
RVDefaultLoadProperties.DefaultFontSizesDouble[rvfstDefault] instead.
I'll make DefaultFontSizeDouble assignable in the next update.
by Sergey Tkachenko
Fri Dec 08, 2023 8:31 am
Forum: Support
Topic: Code to importing Docx file
Replies: 1
Views: 18246

Re: Code to importing Docx file

The simplest application: For TRichView Place RichView1: TRichView (or TRichViewEdit) on a form. Place RVStyle1: TRVStyle on a form. Assign RichView1.Style := RVStyle1. Call: RichView1.Clear; RichView1.LoadDocX(FileName); RichView1.Format; For ScaleRichView Place SRichViewEdit1: TSRichViewEdit on a ...
by Sergey Tkachenko
Fri Dec 08, 2023 8:28 am
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 109095

Re: Leak Using rvActionOpen

Can you send me a DocX file where it happens?
by Sergey Tkachenko
Tue Dec 05, 2023 3:31 pm
Forum: Support
Topic: Fatal error compiling x64 in RAD Studio 11.3/12
Replies: 5
Views: 64686

Re: Fatal error compiling x64 in RAD Studio 11.3/12

Well, it appeared that this change crashes the command-line compiler of Delphi 12, it reports "RichViewActionsD12.dpk(153) Fatal: F2084 Internal Error: LI693". Older compilers are OK. The solution is changing "uses" as I said above, but without moving from implementation to inter...
by Sergey Tkachenko
Tue Dec 05, 2023 12:00 pm
Forum: Support
Topic: Fatal error compiling x64 in RAD Studio 11.3/12
Replies: 5
Views: 64686

Re: Fatal error compiling x64 in RAD Studio 11.3/12

As I said, I cannot reproduce the linker problem. I can see only a crash on start. The problem is definitely in a wrong unit initialization order for C++Builder 64-bit. I found a workaround. In RichView.pas and RVEdit.pas, 1) remove {$IFDEF RVLIVEBINDING} Data.Bind.Components, {$ENDIF} from implemen...