Search found 169 matches

by Jim Knopf
Thu Sep 04, 2014 4:50 pm
Forum: Support
Topic: Automatically switch back behind hyperlink
Replies: 3
Views: 13817

Automatically switch back behind hyperlink

What is an easy way to switch back to normal style? User inserted a hyperlink. Then he enters some new text exactly behind the last Char of the hyperlink. In this case the hyperlink style is extended for the new input. If the link was the last text in editor window unfortunately he is unable to go b...
by Jim Knopf
Wed Sep 03, 2014 1:15 pm
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

now, after very good assistance of Sergey I won't conseal the reason of this adventurous problem:

1. RichViewSettings of both RVEdits should be identical
2. Both RVEdits should use the same RVStyle component

Otherwise everything works but there is no footnote number in the footnote text
by Jim Knopf
Mon Sep 01, 2014 5:04 pm
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

This moment I generated this text with tRichView. No other program touched it. And if opened it in Word there was not numbering in front of the text at pages bottom. {\rtf1\fbidis\ansi\ansicpg0\uc1\deff0\deflang0\deflangfe0\fet2{\*\ftnsep\pard\plain\chftnsep }{\*\ftnsepc\pard\plain\chftnsepc}{\fontt...
by Jim Knopf
Mon Sep 01, 2014 2:36 pm
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

Strange. I don't think that it is Words problem. If I enter a footnote in old Word it works. If I enter footnote in RVEdit it doesn't. Thies code works - input in word: {\f28\lang0\langfe1031\langnp0 Mir war nicht wohl in meiner Haut, als ich die ausladende Treppe in den ersten Stock der Zentrale ho...
by Jim Knopf
Mon Sep 01, 2014 2:14 pm
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

Maybe a problem of an elder version of Word. With Word 2013 it works, numbering of footnote appears in front of text at bottom of page.
by Jim Knopf
Mon Sep 01, 2014 12:25 pm
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

Thank you, the first problem I could solve. Although the logic is a bit confusing. But #2 is dogged. As I implemented footnotes I did it as described in your demo example you mentioned. I checked it now once more. It always worked fine because I used footnotes for internal to dos. But now I need foo...
by Jim Knopf
Mon Sep 01, 2014 4:17 am
Forum: Support
Topic: Footnotes - transferring, numbering
Replies: 9
Views: 23689

Footnotes - transferring, numbering

In Patchwork - application where I use RichView - a novel is a collection of a lot of rtf files, one for each scene. To print I transfer all the single files in one document which is saved as rtf document to be printed, published and what else. 1. problem: in style1 belonging to the writing window, ...
by Jim Knopf
Sat Aug 30, 2014 11:05 am
Forum: Support
Topic: Revision tracking
Replies: 2
Views: 13058

Revision tracking

Hi Sergey,

I only found few information about this in the forum.

My challenge: Import Text with revision tracking from word-rtf and accept/reject modifications in rvEdit.

Is it poosible? If then how, if not, is it on you to-do list?

Thanks
Martin
by Jim Knopf
Tue Jul 15, 2014 2:43 pm
Forum: Support
Topic: Retrieve URL from Item
Replies: 2
Views: 10623

URLs are stored in items tags. By default, tags contain only URLs, so you can simply use rvEdit.GetItemTag(i). Thanks, I found out in the meantime. But I thougt it's so simple, There's a catch ;) Instead of checking all these types, it's simpler to use the undocumented method: IsHyperlink := rvEdit...
by Jim Knopf
Mon Jul 14, 2014 6:08 pm
Forum: Support
Topic: Retrieve URL from Item
Replies: 2
Views: 10623

Retrieve URL from Item

Perhaps it is too simple for my complicated thinking ...

Iterating items (export text to ebook) I have to get the url of the particular item. Tried with GetJumpPointLocation, but the id seems not to be the current item number.

Code: Select all

for i := 0 to rvEdit.ItemCount-1 do
  // URL of item i := ...?
end;
by Jim Knopf
Wed Jun 25, 2014 2:27 pm
Forum: Support
Topic: Monitoring during loading rtf-file?
Replies: 1
Views: 9191

Monitoring during loading rtf-file?

I have to work in my application with preset 'use predefined set of styles' in TRichviewEdits Setiings. For special situations I installed 2 additional text styles with a second charset, RUSSIAN_CHARSET e.g. (normal + italic) One project consits out of many textfiles (rtf). If I change the projects ...
by Jim Knopf
Fri Jun 20, 2014 9:20 am
Forum: Support
Topic: Multi style conversion
Replies: 3
Views: 12781

Thank you Sergey, very helpful idea! :D
by Jim Knopf
Wed Jun 18, 2014 5:25 pm
Forum: Support
Topic: Multi style conversion
Replies: 3
Views: 12781

No hint ...?
by Jim Knopf
Tue Jun 10, 2014 4:53 pm
Forum: Support
Topic: Multi style conversion
Replies: 3
Views: 12781

Multi style conversion

How can I solve this problem easy: I have to sets of styles: style 0..4 is normal style 5..9 are the same styles but with an other color User marks a text that contains different styles, e.g. normal bold and italic (set 0..4) if he releases the mouse the whole marked text should be converted. E.g. 0...
by Jim Knopf
Sun Apr 27, 2014 11:51 am
Forum: Support
Topic: Event after internal drag & drop?
Replies: 1
Views: 8335

In the meantime I solved the problem in this way (not very fashionable but it works): 1. At rvSelect event I save the selected Text to FLastSelection (only if <> '') 2. At rvItemAction event I compare FLastSelection to 'Text' parameter and if TRVItemAction = rviaInserting. Unfortunately then I have ...