Search found 100 matches

by cychia
Wed Sep 12, 2012 11:04 am
Forum: Support
Topic: TRVHTMLViewImporter does not trigger RV.OnReadHyperlink
Replies: 1
Views: 9077

sorry, my mistake. it's working now with AutoHyperlink = False
by cychia
Wed Sep 12, 2012 10:30 am
Forum: Support
Topic: TRVHTMLViewImporter does not trigger RV.OnReadHyperlink
Replies: 1
Views: 9077

TRVHTMLViewImporter does not trigger RV.OnReadHyperlink

i can't make TRVHTMLViewImporter to trigger RV.OnreadHyperlink when importing a html file like I have donre previously using TRVHTMLImporter. May I know I can I do so? I would like to customize the link before it is written into rv content.
by cychia
Fri Sep 07, 2012 11:41 am
Forum: Support
Topic: numbering font
Replies: 1
Views: 9193

numbering font

1. if i were to use rvaction for numbering, is there any property for me to allow the rvaction to follow current font when inserting a numbering? I can't find one. 2. so i tried to handle the numbering myself and below are the codes: for nCounter := 0 to 8 do begin with ListLevels.Add do begin Font....
by cychia
Fri Jul 13, 2012 11:42 am
Forum: Support
Topic: update all image
Replies: 4
Views: 14206

Do you want to keep all other paragraph properties (such as indents or background) and simple make this paragraph centered? Or may be you want to apply some specific paragraph style (centered, no indents, no background color, etc.) now the picture is on para of its own right? i want the picture to ...
by cychia
Thu Jul 12, 2012 11:05 am
Forum: Support
Topic: update all image
Replies: 4
Views: 14206

Assuming that this operation do not need to be undone: uses RVTable, CRVData; procedure MoveImagesToNewLine(RVData:TCustomRVData); var i,r,c: Integer; Table: TRVTableItemInfo; begin for i := 0 to RVData.ItemCount-1 do case RVData.GetItemStyle(i) of rvsPicture, rvsHotPicture: begin if (i>0) and (RVD...
by cychia
Mon Jul 09, 2012 11:24 am
Forum: Support
Topic: update all image
Replies: 4
Views: 14206

update all image

how can i update all images in the content to stay in its own line? for example, this is my content:

abc[picture]xyz

i want it to be:

abc
[picture]
xyz
by cychia
Wed Feb 08, 2012 10:31 am
Forum: Support
Topic: does rv support ins/ovr ?
Replies: 1
Views: 8722

does rv support ins/ovr ?

I have tested RVaction demo, pressing keyboard ins/ovr does not seems to be working, does RV supports ins/ovr?
by cychia
Wed Oct 05, 2011 12:38 pm
Forum: Support
Topic: printing multiple copies not working
Replies: 1
Views: 8975

printing multiple copies not working

I have tested rv demo Assorted>Printing>Printing, when Print dialog is lauch, I have set the number of copies to 2, but it finally printed 1 copy only.
by cychia
Wed Oct 05, 2011 12:35 pm
Forum: Support
Topic: insert page number as footer
Replies: 1
Views: 8655

insert page number as footer

how can i insert page number as footer?
by cychia
Mon Aug 22, 2011 12:11 pm
Forum: Support
Topic: did u receive my email on "insert file content unreadab
Replies: 1
Views: 8413

did u receive my email on "insert file content unreadab

But the problem is, if you try to insert the txt file first, it is ok. But if html file is inserted first, then only insert txt file, i will have that problem. >>I think the text file is inserted with wrong encoding. >>What's the encoding of this file? When I open it in Notepad, it does not >>look b...
by cychia
Wed Apr 06, 2011 3:36 am
Forum: Support
Topic: counting paragraph
Replies: 3
Views: 12237

1. follow the ms word way, in which paragraph with bullet, numbering and text will only be counted as 1. picture, table etc not.

2. for table, the paragraph count is depended on the number of valid paragraph (rule 1 applied) in each cell. say if there are 2 cell with 2 para each, total para is 4
by cychia
Tue Apr 05, 2011 4:17 am
Forum: Support
Topic: counting paragraph
Replies: 3
Views: 12237

counting paragraph

I would like to know the total paragraph in my rv editor content, only those para with content, either picture, or text will be counted. How can I do that?
by cychia
Fri Jan 28, 2011 1:06 pm
Forum: Support
Topic: print preview without printer/printer driver installed
Replies: 1
Views: 8754

print preview without printer/printer driver installed

How can I setup print preview component to run without needed a printer to be installed?
by cychia
Fri Jan 28, 2011 11:21 am
Forum: Support
Topic: Print Preview scroll bar
Replies: 1
Views: 9237

Print Preview scroll bar

from RV demo, i found the print preview is shown in single page, and the scroll bar is used to browse from top of bottom of a single page. And the only way to browse to the next page is through code. Is there any way I can set the print preview component so that i will shown all pages, scroll will b...
by cychia
Mon Oct 04, 2010 10:35 am
Forum: Support
Topic: indent not saved when export to html
Replies: 1
Views: 8505

indent not saved when export to html

I want my rv content to be exported to simple html without CSS, but when there is indent in the rv content, i wish it is exported like this:

<p style='margin-left:144.0pt'>123</p>

any suggestion on how can I achieve this with rvedit? Thanks