Search found 16 matches

by cychia_n2n
Thu Sep 07, 2017 2:04 am
Forum: Support
Topic: RVF to PDF
Replies: 1
Views: 10790

RVF to PDF

I have read from TRichView website, there are 2 third party component listed, llPDFLib and GNostice. 1. May I know can both of them convert full content from RV to PDF? Inlcude image, header. footer, footnote etc 2. GNostice support from Delphi 2007 onwards, while I am using Delphi 2006 for my proje...
by cychia_n2n
Thu Mar 09, 2017 11:15 am
Forum: Support
Topic: Custom Item Type, OnItemAction
Replies: 4
Views: 13589

Re: Custom Item Type, OnItemAction

Any idea?
by cychia_n2n
Mon Mar 06, 2017 8:44 am
Forum: Support
Topic: Custom Item Type, OnItemAction
Replies: 4
Views: 13589

Re: Custom Item Type, OnItemAction

1. I have try the following to protect my item text style, it seems working now. If rvprParaStartProtect is not added into protection, when I press Enter at end of the text item I have inserted, OnItemAction will trigger for an new empty text item with the same tag, but if rvprParaStartProtect is ad...
by cychia_n2n
Tue Feb 28, 2017 12:16 pm
Forum: Support
Topic: Custom Item Type, OnItemAction
Replies: 4
Views: 13589

Custom Item Type, OnItemAction

According to this thread: http://www.trichview.com/forums/viewtopic.php?f=2&t=709&p=2644&hilit=itemaction#p2644 We were suggested to have a list to keep items and check item existence during OnItemAction. I need to keep a list of items as well. I have some special items with tags that I ...
by cychia_n2n
Tue Feb 28, 2017 11:29 am
Forum: Support
Topic: OnItemAction var Text
Replies: 1
Views: 8296

OnItemAction var Text

In OnItemAction(Sender: TCustomRichView; ItemAction: TRVItemAction; Item: TCustomRVItemInfo;
var Text: TRVRawByteString; RVData: TCustomRVData);

the Text is in var, but when ItemAction = rviaInserted, I tried to change the Text, but it does not seems updating the text to my new text.
by cychia_n2n
Tue Feb 28, 2017 10:05 am
Forum: Support
Topic: How to setItemText for an Item
Replies: 1
Views: 8352

How to setItemText for an Item

I have a list to keep Text Items with special tag i have assigned to when calling AddNLTag. When I need to update the Item text, i will loop through my list and update item text one follow by another. I tried, rve.SetItemText(rve.GetItemNo(TextItem), 'updated text'), but items in table cell does not...
by cychia_n2n
Mon Feb 27, 2017 12:02 pm
Forum: Support
Topic: How to get newly inserted item
Replies: 1
Views: 8696

How to get newly inserted item

Right after call AddNLTag() how can I get the correct ItemInfo? rve.GetCurrentItem?

Thanks
by cychia_n2n
Tue Jan 03, 2017 2:16 am
Forum: Support
Topic: insert blank page
Replies: 4
Views: 14406

Hi, anyone have solution for my need?

Thanks.
by cychia_n2n
Wed Dec 21, 2016 7:45 am
Forum: Support
Topic: insert blank page
Replies: 4
Views: 14406

Insert Blank page for ms word will insert a new blank page at the caret position.

I tried call InsertPageBreak twice, it can create the correct result, but how can I maintain the caret in the blank page?
by cychia_n2n
Tue Dec 20, 2016 9:56 am
Forum: Support
Topic: Table Context
Replies: 5
Views: 16605

I recall why cannot use second method, because when in my table cell, when there is an image, my Table Tab will be hidden
by cychia_n2n
Tue Dec 20, 2016 4:27 am
Forum: Support
Topic: insert blank page
Replies: 4
Views: 14406

insert blank page

How can I insert blank page like MS Word feature?

Thanks
by cychia_n2n
Fri Dec 16, 2016 3:45 am
Forum: Support
Topic: Table Context
Replies: 5
Views: 16605

when the caret on left or right of the table, I do not want to show the Table tab, how can I achieve that?

Thanks
by cychia_n2n
Thu Dec 15, 2016 11:57 am
Forum: Support
Topic: Table Context
Replies: 5
Views: 16605

Table Context

I have a Ribbon Context Tab for Table, whenever caret is in table, the Table Tab will be visible. I try these to check if caret in a table 1. Result := (rve.InplaceEditor <> nil); 2. Result := rve.GetCurrentItemEx(TRVTableItemInfo, rve, ItemInfo); 3. begin Result := rve.GetCurrentItemEx(TRVTableItem...
by cychia_n2n
Fri Dec 02, 2016 9:34 am
Forum: Support
Topic: rvitem to be exported as image
Replies: 3
Views: 12193

I am going to have a feature to allow user to create table styles, after setting up the table styles, i am thinking to generate a thumbnail of the table style and it will be shown in the list box when choosing styles to apply to table. I am using the ToImage demo as example, but I am struggling to w...
by cychia_n2n
Thu Dec 01, 2016 4:49 pm
Forum: Support
Topic: rvitem to be exported as image
Replies: 3
Views: 12193

rvitem to be exported as image

Is there any way i can save the rvitem like TableItem into a image file?