Hi,
I am using RV version 14.6 / D7.
I have 100,000+ rvf documents stored in blobs which contain hyperlinks.
Now, i want to generate RTFs where hyperlinks are to be replaced by footnote number & relevant footnote matter (can be multiple para with tables).
Any ideas are welcome. Currently, i am planning to generate RTF files and parse all elements.
-Sam
Need advice from Team_RichView
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Need advice from Team_RichView
It would be much simpler to change TRichView content before saving RTF.
From where do you want to get footnote texts?
From where do you want to get footnote texts?
-
- Posts: 7
- Joined: Sat Apr 01, 2017 6:20 am
Re: Need advice from Team_RichView
Hi Sergey,
Thanks for providing the URL. I have now upgraded to RichView v17.
Now, i have managed to insert footnotes in Main document. However, i am facing trouble inserting footnotes inside tables. I am cycling through all items and getting ItemNo (inside cell) after which i want to insert footnote. However InsertItem() inserts at CurItemNo. Is there anything like "InsertItem_AfterItemNo" ?
PS : My footnote texts are RVF.
Thanks for providing the URL. I have now upgraded to RichView v17.
Now, i have managed to insert footnotes in Main document. However, i am facing trouble inserting footnotes inside tables. I am cycling through all items and getting ItemNo (inside cell) after which i want to insert footnote. However InsertItem() inserts at CurItemNo. Is there anything like "InsertItem_AfterItemNo" ?
PS : My footnote texts are RVF.
-
- Site Admin
- Posts: 17555
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Need advice from Team_RichView
I attached a sample project converting hyperlinks to footnotes.
Before: After:
Before: After:
- Attachments
-
- LinksToNotes.zip
- (4.53 KiB) Downloaded 1209 times
-
- Posts: 7
- Joined: Sat Apr 01, 2017 6:20 am
Re: Need advice from Team_RichView
Thanks Sergey,
I was not aware of "RVData.Items.InsertObject(i, s, Note)".
However, i managed with
table.cells[r,c].edit
setselectionbounds()
InsertItem()
etc.
Now i shall change my code to RVData.Items.InsertObject(i, s, Note)
Thanks.
I was not aware of "RVData.Items.InsertObject(i, s, Note)".
However, i managed with
table.cells[r,c].edit
setselectionbounds()
InsertItem()
etc.
Now i shall change my code to RVData.Items.InsertObject(i, s, Note)
Thanks.