Search found 19 matches

by DmitriPopov
Fri Jun 16, 2017 8:30 am
Forum: Support
Topic: Create lists from code
Replies: 1
Views: 8680

Create lists from code

Hello! I need to create lists from code. I try to do it like this: procedure TForm1.AddListItem(ARVData: TCustomRVData); var marker: TRVMarkerItemInfo; begin marker := TRVMarkerItemInfo.CreateEx(ARVData, CreateBullets, 0, 1, True); ARVData.AddItem('', marker); ARVData.AddTextNL('Test list item', 0, ...
by DmitriPopov
Tue Apr 25, 2017 3:22 pm
Forum: Announcements
Topic: Mathematical expressions in TRichView
Replies: 4
Views: 28220

Re: Mathematical expressions in TRichView

Good news!
But what was the reason behind making formulas "LaTeX-like", and not just LaTeX? Users are accustomed to LaTeX, there's no need to define a subgenre. Another problem is that it's impossible to paste LaTeX code from another source, it needs conversion.
by DmitriPopov
Thu Dec 15, 2016 12:31 pm
Forum: Support
Topic: Wingdings font + RVReportHelper + TMetafile
Replies: 2
Views: 11488

It worked, thank you!
by DmitriPopov
Wed Dec 14, 2016 4:55 pm
Forum: Support
Topic: Wingdings font + RVReportHelper + TMetafile
Replies: 2
Views: 11488

Wingdings font + RVReportHelper + TMetafile

Hello!

TRichView 16.9 + Delphi XE2.

I need to draw pages from TRVReportHelper to TMetafileCanvas. All text goes OK, except text with "Wingdings" font - blank space appears instead of it. When drawing to all other Canvases, for example to TBitmap.Canvas, Wingdings appears normally.
by DmitriPopov
Thu Feb 21, 2013 12:53 pm
Forum: Announcements
Topic: New and updated applications with TRichView - help authoring
Replies: 1
Views: 21689

ANN: CHM Help Files Alternative For Delphi

Hello, My name is Dmitri Popov, I am the author of Helpinator, one of the help authoring tools shown above. Version 3.10 introduces new help file format and new help system called MajorMindHelp, that: - is Delphi-native - implements HelpViewer interfaces and registers itself as a HelpViewer, so you ...
by DmitriPopov
Wed Sep 19, 2012 12:59 pm
Forum: Support
Topic: Controlling HTML List Styles
Replies: 2
Views: 11225

Controlling HTML List Styles

Hello!

In CSS mode and rvsoMarkersAsText not included TRichView writes list CSS right into ul tag instead of putting it with other style info into CSS section, which is a little awkward. How can I change than behavior and move CSS from ul tag to where it is supposed to be - CSS file/section?
by DmitriPopov
Wed Feb 08, 2012 2:54 pm
Forum: Support
Topic: More Control Over HTML Images
Replies: 1
Views: 9274

More Control Over HTML Images

Hello!

Is there any way to alter html "img" tag when exporting HTML from TRichViewEdit? Specifically I need to append "usemap" attribute.
by DmitriPopov
Thu Aug 04, 2011 6:46 pm
Forum: Support
Topic: Take control over TRVReportHelper
Replies: 2
Views: 11457

Thank you, this should resolve some of the tasks.
by DmitriPopov
Tue Aug 02, 2011 1:17 pm
Forum: Support
Topic: Take control over TRVReportHelper
Replies: 2
Views: 11457

Take control over TRVReportHelper

Hello! I need to have more control over how TRVReportHelper renders document. For example, to force it to keep some items on the same page or repeat table header on new page if printing splits a table into pages. Brief studying of documentation shows that there's no way to do that except altering so...
by DmitriPopov
Sun Jun 26, 2011 7:31 pm
Forum: Support
Topic: Numbered lists and TAB key
Replies: 2
Views: 11407

OK, thank you!
by DmitriPopov
Fri Jun 24, 2011 7:35 pm
Forum: Support
Topic: Numbered lists and TAB key
Replies: 2
Views: 11407

Numbered lists and TAB key

Hello! I need to make TRichViewEdit to act like MS Word when user wants to change current list item level with TAB key. Example. Let's say a user has activated numbered list input. At first "1. " appears. He enters some text for this item: 1. First item and presses "Enter". Then ...
by DmitriPopov
Thu Jun 16, 2011 7:50 pm
Forum: Support
Topic: Copy/Paste between two RichViewEdit and double list styles
Replies: 3
Views: 13977

I think there should be an option that defines the way copy/paste work with styles - work by default, or by user-defined behavior, possibly via event handling.

In my case users do copy/paste excessively and this leads to a huge style and slow operation.
by DmitriPopov
Thu Jun 16, 2011 11:27 am
Forum: Support
Topic: Copy/Paste between two RichViewEdit and double list styles
Replies: 3
Views: 13977

I just managed to control DeleteUnusedStyles by setting "Standard" to True for styles I want to keep. But it solved the problem only partially. Now styles don't multiply when I copy text from RVedit1 to RVEdit2 but they do when I copy list. This is very strange since RVStyle2 already conta...
by DmitriPopov
Thu Jun 16, 2011 10:51 am
Forum: Support
Topic: Copy/Paste between two RichViewEdit and double list styles
Replies: 3
Views: 13977

Copy/Paste between two RichViewEdit and double list styles

Hello! I am using TRichView TRichView: 12.6.1 in Delphi 2010 I encountered strange problem with copy/paste between two TRichViewEdit components. Both RVedits have their own RVStyle components attached. Initially contents of RVEdits and RVStyles are identical (some text and numbered list). Now let's ...
by DmitriPopov
Mon May 02, 2011 6:04 pm
Forum: Support
Topic: Loading XML to TRVReportHelper.RichView
Replies: 6
Views: 18899

OK, thanks. Now it works without errors.