Search found 9380 matches

by Sergey Tkachenko
Sun Jan 28, 2024 12:18 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 6
Views: 72679

Re: DocX table empty cells get wrong style

Fixed in TRichView 22.2
by Sergey Tkachenko
Sun Jan 28, 2024 12:18 pm
Forum: Support
Topic: DocX load field gets wrong Font/Style
Replies: 2
Views: 31439

Re: DocX load field gets wrong Font/Style

Foxed in TRichView 22.2
by Sergey Tkachenko
Wed Jan 24, 2024 7:33 pm
Forum: RVMedia
Topic: Black mpeg video
Replies: 1
Views: 2115

Re: Black mpeg video

Do I understand correctly: RVMedia can display videos from all these cameras, the problem only in recording? A format of source video should not matter: a recorder simply requests the last received frame periodically. So, recorder does not depend on the way how these frames were received. Can you ch...
by Sergey Tkachenko
Thu Jan 18, 2024 5:26 pm
Forum: Support
Topic: Right Aligned Image Draws Line
Replies: 2
Views: 2620

Re: Right Aligned Image Draws Line

This is not a bug but a feature. It shows the place in text where this picture is inserted.
Please read the topic about TRVStyle.FloatingLineColor for additional information.
To hide these lines completely, assign clNone to TRVStyle.FloatingLineColor.
by Sergey Tkachenko
Thu Jan 18, 2024 11:47 am
Forum: ScaleRichView
Topic: TScaleRichview Mouse Scrolling
Replies: 2
Views: 3385

Re: TScaleRichview Mouse Scrolling

1) Version of Windows?
2) Version of Delphi?
3) Do you use auto-generated manifest? (menu Project | Options, page Application | Manifest, Manifest file)
by Sergey Tkachenko
Thu Jan 18, 2024 11:45 am
Forum: Support
Topic: Assistance Request for Transition to Version 22 and Markdown Functionality
Replies: 6
Views: 5248

Re: Assistance Request for Transition to Version 22 and Markdown Functionality

I just sent modified units to you.

As for images, you can use OnSaveImage2 to store images in a table.
You can also use OnSaveCustomFormat event to detect the beginning of saving. In this event, save nothing, but remove all images related to the current document from the image table.
by Sergey Tkachenko
Wed Jan 17, 2024 2:10 pm
Forum: Support
Topic: Markdown Issue with Last Word Styling and Trailing Space
Replies: 3
Views: 2568

Re: Markdown Issue with Last Word Styling and Trailing Space

I confirm the problem. It is in saving. According to Markdown specification (TRichView uses CommonMark version), bold or italic fragment cannot end on a space character. So in the code aaa **bbb ** bbb is not bold and asterisks must be displayed ( check ) TRichView must modify saving procedure to av...
by Sergey Tkachenko
Wed Jan 17, 2024 2:00 pm
Forum: Support
Topic: Assistance Request for Transition to Version 22 and Markdown Functionality
Replies: 6
Views: 5248

Re: Assistance Request for Transition to Version 22 and Markdown Functionality

Ok, if it works, you can use this solution. I'd suggest to store images directly inside Markdown code. Include rvmdsoInlineImages in EdtSintesi.MarkdownProperties.SaveOptions. Potential problems with this solution: 1. No format auto-detection. If you have a database that already contains documents i...
by Sergey Tkachenko
Wed Jan 17, 2024 8:16 am
Forum: Support
Topic: Assistance Request for Transition to Version 22 and Markdown Functionality
Replies: 6
Views: 5248

Re: Assistance Request for Transition to Version 22 and Markdown Functionality

1. No changes in RTF are required, they are compatible.
2. TDBRichViewEdit does not support Markdown, unless you use OnSaveCustomFormat and OnLoadCustomFormat events. But it's easy to add it.
I can do it today, and send changes to you.
by Sergey Tkachenko
Mon Jan 15, 2024 2:23 pm
Forum: Report Workshop
Topic: TRVItemList object range is 0..0
Replies: 2
Views: 29828

Re: TRVItemList object range is 0..0

Answered by email
by Sergey Tkachenko
Wed Jan 10, 2024 12:34 pm
Forum: RVMedia
Topic: Manual Focus for webcam
Replies: 1
Views: 29928

Re: Manual Focus for webcam

In RVMedia from 2015 - no, it is not possible. RVMedia supports local camera properties in Windows since version 7.2 , released in 2020. The information below is for RVMedia 7.2 and newer. One of supported camera properties is focus distance (measured in mm). If the camera supports it, you can enabl...
by Sergey Tkachenko
Wed Jan 10, 2024 11:49 am
Forum: RVMedia
Topic: OnEndVideoStream Event to detect a disconnection
Replies: 5
Views: 77287

Re: OnEndVideoStream Event to detect a disconnection

For rtsp, RVMedia uses 'rtspsrc' GStreamer object. For new version of GStreamer, a launch string for rtspsrc is constructed in the function GetRTSPSourceStr_1_0 (MRVGSTObject unit for VCL and LCL, or fmxMRVGSTObject unit for FireMonkey) A list of rtspsrc properties can be found here: https://gstream...
by Sergey Tkachenko
Tue Jan 09, 2024 5:10 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 6
Views: 72679

Re: DocX table empty cells get wrong style

When merging, the resulting cell contains combined content of non-empty merged cells. When merging while reading DocX/RTF, only one cell may contain meaningful content (and changed text/paragraph style must be counted as meaningful content). When merging cells as an operation, empty cells are not co...
by Sergey Tkachenko
Tue Jan 09, 2024 2:06 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 6
Views: 72679

Re: DocX table empty cells get wrong style

I changed your Vampire.IsEmpty to Vampire.ItemCount = 0, so this change affects loading from DocX, but does not affect cell merging initiated by the user.