Search found 8398 matches
- Wed Jan 27, 2021 12:37 pm
- Forum: Support
- Topic: Displaying mathematical P issues
- Replies: 4
- Views: 68
Re: Displaying mathematical P issues
I am afraid that I currently I have no idea why it happens :( While TRichView itself uses Uniscribe to draw text, in the symbol dialog, the cell drawing procedure simply sets the canvas.Font and call Windows.TextOutW. I do not know what I can change. I could imagine that somehow surrogate pairs (cha...
- Tue Jan 26, 2021 8:04 pm
- Forum: Support
- Topic: Displaying mathematical P issues
- Replies: 4
- Views: 68
Re: Displaying mathematical P issues
Different fonts may be available in different systems. If the character cannot be found in the font, it is substituted from another font. If it cannot be found in any font, it will be displayed as a "no character" (usually as a box). You can check the character availability using RichViewA...
- Tue Jan 26, 2021 5:08 pm
- Forum: Support
- Topic: Access violation in RVRTFProps.TRVRTFReaderProperties.InsertFromStreamEd
- Replies: 1
- Views: 32
Re: Access violation in RVRTFProps.TRVRTFReaderProperties.InsertFromStreamEd
Thank you for the bug report.
However, this bug is already fixed in version 19.1.
You can download the new version from the same location.
However, this bug is already fixed in version 19.1.
You can download the new version from the same location.
- Mon Jan 25, 2021 3:00 pm
- Forum: Announcements
- Topic: RVLister 2.0 - plugin for Total Commander
- Replies: 1
- Views: 117
RVLister 2.1
RVLister has been updated to version 2.1:
- 32-bit version is fixed
- automatic install (when opening the plugin's ZIP in Total Commander)
- flickering on mouse selection is fixed
- 32-bit version is fixed
- automatic install (when opening the plugin's ZIP in Total Commander)
- flickering on mouse selection is fixed
- Fri Jan 22, 2021 11:45 am
- Forum: Announcements
- Topic: RVLister 2.0 - plugin for Total Commander
- Replies: 1
- Views: 117
RVLister 2.0 - plugin for Total Commander
We've updated our viewer plugin for Total Commander, file manager for Windows. In this version, it supports not only RVF, but also DocX and RTF files. Also, it can make thumbnails for files of these types. Total Commander web site: https://www.ghisler.com/ Plugin: https://www.trichview.com/resources...
- Fri Jan 22, 2021 11:07 am
- Forum: Support
- Topic: RTl with LTR alignment at the end of a line problem
- Replies: 1
- Views: 154
Re: RTl with LTR alignment at the end of a line problem
Please send me a file that is displayed incorrectly (to email richviewgmailcom)
- Wed Jan 20, 2021 1:40 pm
- Forum: RVMedia
- Topic: stream to Web
- Replies: 4
- Views: 1858
Re: stream to Web
Sorry, no, streaming in standard formats is not supported yet.
- Sat Jan 16, 2021 3:58 pm
- Forum: Support
- Topic: Hiding footnotes
- Replies: 5
- Views: 475
Re: Hiding footnotes
Received. I'll check it at the beginning of the next week.
- Sat Jan 16, 2021 3:33 pm
- Forum: Support
- Topic: Hiding footnotes
- Replies: 5
- Views: 475
Re: Hiding footnotes
Please send me a sample file to email richviewgmailcom.
Footnotes should not affect processing that much.
Footnotes should not affect processing that much.
- Fri Jan 15, 2021 12:58 pm
- Forum: Support
- Topic: Hiding footnotes
- Replies: 5
- Views: 475
Re: Hiding footnotes
Do you mean ScaleRichView?
- Thu Jan 14, 2021 6:20 pm
- Forum: RVMedia
- Topic: Channel lock when using the TRVCamera component
- Replies: 2
- Views: 254
Re: Channel lock when using the TRVCamera component
Sorry, it cannot be fixed.
This is how the camera Windows API works. For example, if you use some web camera in Skype, you cannot use it in "Camera" app or in RVMedia at the same time.
This is how the camera Windows API works. For example, if you use some web camera in Skype, you cannot use it in "Camera" app or in RVMedia at the same time.
- Tue Jan 12, 2021 12:08 pm
- Forum: Support
- Topic: TRichView v.19 docx import
- Replies: 3
- Views: 519
Re: TRichView v.19 docx import
Fixed in version 19.1.1 (uploaded for registered users)
- Tue Jan 12, 2021 11:51 am
- Forum: Support
- Topic: Trich demo not using correct font
- Replies: 2
- Views: 334
Re: Trich demo not using correct font
Fixed in version 19.1.1. It is uploaded for registered users. The solution is still not ideal. MS Word allows defining 4 fonts: for ASCII, East Asian, complex scripts (including Arabic) and the rest of characters. For complex scripts, it also allows to define "bold" and "italic" ...
- Tue Jan 12, 2021 11:10 am
- Forum: Support
- Topic: Change line spacing in Runtime
- Replies: 3
- Views: 379
Re: Change line spacing in Runtime
If you want to make it as an editing operation, select the whole text (call RichViewEdit1.SelectAll), then call the code above. If you want to make it as a fast not undoable operation, call: (assuming that RichViewEdit1.Style = RVStyle1) RichViewEdit1.ClearUndo; RichViewEdit1.DeleteUnusedStyles(True...
- Tue Jan 12, 2021 11:02 am
- Forum: Support
- Topic: Check if the line is empty
- Replies: 1
- Views: 254
Re: Check if the line is empty
What's an empty line? A paragraph that contains only a single empty text item. I am not sure if the bulleted line may be considered as empty, let say that it is not. What line do you need? If you need a line at the caret position in RichViewEdit1, the code is: var rve: TCustomRichViewEdit; ItemNo: I...