Search found 75 matches

by jonjon
Thu Nov 25, 2010 9:44 am
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 341654

Thank you Sergey.
by jonjon
Wed Nov 24, 2010 4:27 pm
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 341654

Are the character, paragraph and line count functions tread-safe ? Thanks in advance.
by jonjon
Sun Apr 25, 2010 9:16 am
Forum: Examples, Demos
Topic: [Example] Document structure as a tree
Replies: 7
Views: 118603

Some additions to highlight the correct parts:

- In ShowStructure, instead of AddChild use AddChildObject. Example:

// Node.Owner.AddChild(ItemNode, s);
Node.Owner.AddChildObject(ItemNode, s, Pointer(i));

- On mouse over the TreeView:

procedure TForm1.TreeView1MouseMove(Sender: TObject; Shift ...
by jonjon
Fri Apr 23, 2010 3:51 pm
Forum: Examples, Demos
Topic: [Unit] Adding a table of contents
Replies: 22
Views: 459301

Any news on the RVReportHelper version ? Or is it impossible ?

Regards,

John.
by jonjon
Fri Mar 19, 2010 4:00 pm
Forum: Examples, Demos
Topic: [Unit] Adding a table of contents
Replies: 22
Views: 459301

I think specifying ItemNo might be the best option to place it correctly.
by jonjon
Fri Mar 19, 2010 10:33 am
Forum: Examples, Demos
Topic: [Unit] Adding a table of contents
Replies: 22
Views: 459301

Great stuff Sergey.

A couple of questions though. Does it work if the table of content will not fit on one page ? Also, sometimes there are cover pages or titles pages before the table of content: how could it be inserted just after those pages ?

Finally, the RVReportHelper would be nice.

Best ...
by jonjon
Sat Mar 13, 2010 7:42 am
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

Thank you very much for your help Sergey, this is working fine.

The only thing I had to change is:

Code: Select all

RVData.GetBoolValue(rvbpFullWidth)
to

Code: Select all

RVData.GetItem(nCheckPoint).GetBoolValue(rvbpFullWidth)
by jonjon
Thu Jan 28, 2010 10:15 am
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

Thank you Sergey,

I do not understand the "this item starts a paragraph" flag ? Where did I miss it ?

Also regarding using my own checkpoints, yes the original problem was to make them a small icon where the user could click to rename them. But I will consider reverting to standard checkpoints in ...
by jonjon
Wed Jan 27, 2010 9:27 am
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

Any thoughts, Sergey ? Thank you in advance.

jonjon.
by jonjon
Sat Jan 16, 2010 1:32 pm
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

Sergey,

I found a way by parsing the whole TRichView Edit and converting the checkpoints to my custom anchor objects (TRVAnchor). Unfortunately the anchors are not placed exactly where the checkpoints are located but always at the beginning of the line. This might be normal ? What do you think ...
by jonjon
Fri Jan 15, 2010 8:30 pm
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

The problem is that my anchors are special TRVLabelItemInfo in TRichViewEdit and not normal checkpoints :(
Any alternative I could use ?

Thanks for the quick reply!
by jonjon
Fri Jan 15, 2010 6:30 pm
Forum: Support
Topic: Import anchor links with RVHTMLViewImporter
Replies: 9
Views: 32900

Import anchor links with RVHTMLViewImporter

Is there a way to be notified of an anchor link import (ex: <a name="myAnchor">My Anchor link</a>) using the TRVHTMLViewImporter ?

Thanks a lot.
by jonjon
Tue Apr 14, 2009 2:53 pm
Forum: Support
Topic: TRichView XML format documentation
Replies: 2
Views: 14688

Thank you for the fast reply Sergey.

Have a nice day,

John.
by jonjon
Tue Apr 14, 2009 12:34 pm
Forum: Support
Topic: TRichView XML format documentation
Replies: 2
Views: 14688

TRichView XML format documentation

Hello Sergey,

Is there a documentation for the TRichView XML format available ?

Also, is it safe to assume that TRichView XML saves all the TRichViewEdit properties or some are missing ?

Best regards,

John.
by jonjon
Wed Mar 04, 2009 6:26 pm
Forum: Examples, Demos
Topic: [Demo] Advanced RTF to PDF demo using LLPDFLib (open source)
Replies: 10
Views: 137739

OK so I understand you wrote the llPdfLib one ?

Any chance you'd be able to give me your thoughts about both libraries regarding to PDF export from a TRichView document ?

On one hand I find the llPdfLib isn't really followed by its author (time between releases is really long and support has been ...