Search found 9409 matches

by Sergey Tkachenko
Sat Dec 01, 2007 12:21 pm
Forum: ScaleRichView
Topic: Screenshots
Replies: 3
Views: 21862

Image
New component: TSRVPageScroll (left side)
by Sergey Tkachenko
Fri Nov 30, 2007 11:48 am
Forum: Support
Topic: Control active in design time
Replies: 1
Views: 7546

Yes, in future, but not very soon.
by Sergey Tkachenko
Fri Nov 30, 2007 9:50 am
Forum: Support
Topic: Bug on export of lists into RTF
Replies: 5
Views: 14843

Assuming that you have the latest version of TRichView. 1) RVStyle.pas, function TRVListLevel.IsSimpleEqual Change the line (StartFrom = Value.StartFrom) and to (not HasNumbering or (StartFrom = Value.StartFrom)) and 2) CRVData.pas, function TCustomRVData.SaveRTFToStream Between the lines if (Marker...
by Sergey Tkachenko
Thu Nov 29, 2007 1:54 pm
Forum: Support
Topic: Property for the complete Hypertext
Replies: 4
Views: 12720

by Sergey Tkachenko
Thu Nov 29, 2007 1:03 pm
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15685

If you are also interested why in MS Word (in TOC), there is only horizontal lines above some paragraphs, but TRichView displays also left and right sides of paragraphs borders. It's because these paragraphs have top, left and right borders, but left and right border sides are white (you can see it ...
by Sergey Tkachenko
Thu Nov 29, 2007 12:18 pm
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15685

I received your file.
It's a bug in TRichView. In your file, widths of all tables (except for the first one) are specified in absolute values (twips), but because of this bug they are treated as %. So tables have about 180% of the editor width.
It will be fixed in the next update.
by Sergey Tkachenko
Thu Nov 29, 2007 11:12 am
Forum: Support
Topic: Property for the complete Hypertext
Replies: 4
Views: 12720

Do you want to read hyperlink target? In TRichView, hypertext targets are usually stored in item tags. In order to store strings in tags, include rvoTagsArePChars in RichViewEdit.Options. Then use GetItemTag method. It returns integer, convert it to PChar and assign to string. For example procedure ...
by Sergey Tkachenko
Thu Nov 29, 2007 10:11 am
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48152

Sorry, I am afraid it's not possible. It requires positioning items at the specified coordinates (unsupported by TRichView)
by Sergey Tkachenko
Thu Nov 29, 2007 10:06 am
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15685

Yes, send it to me. I can see the following possible reasons for this problem 1) CellPadding. MS Word allows different cell paddings for each cell, and different values for each cell side. By default, it uses the same values for all table cells, but different horizontal and vertical cell padding. TR...
by Sergey Tkachenko
Thu Nov 29, 2007 9:56 am
Forum: Support
Topic: Bug on export of lists into RTF
Replies: 5
Views: 14843

Well, currently TrvActionParaBullets and TrvActionParaNumbering are checked only if the current paragraphs have bullets/numbering with exactly the same attributes as specified in their ListStyles property. The problem is because when saving/reopening RTF, not all attributes are exactly the same as i...
by Sergey Tkachenko
Thu Nov 29, 2007 8:57 am
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48152

In TRichView, controls are positioned in text, and if you remove text, controls will be moved.
Can you explain what do you want to implement, may be I will be able to suggest a solution.
by Sergey Tkachenko
Wed Nov 28, 2007 12:43 pm
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15685

Do you import it via office converter? In this case, the results may be worse, because converters sometimes generate bad intermediate RTF. Try to save document as RTF in Word and open in in TRichViewEdit (or copy-paste it, results should be the same). If the problem still exists, send me this docume...
by Sergey Tkachenko
Tue Nov 27, 2007 7:21 pm
Forum: Support
Topic: Bug on export of lists into RTF
Replies: 5
Views: 14843

In TRichView development, there were several different solutions for saving attributes of the last copied paragraph (these attributes include bullet). MS Word ignores attributes of the last pasted paragraph, if ending "end of paragraph" mark (\par keyword) is not saved. If I save \par at t...
by Sergey Tkachenko
Mon Nov 26, 2007 6:26 pm
Forum: Support
Topic: List Format Problem In Copying From One Table To Another
Replies: 4
Views: 11945

Lists styles have ListID property - a random number allowing to distinguish lists having the same properties. When saving collections of list styles, this property is saved. When loading RVF, if list style have the same properties (including ListID) as the existing list style, the existing style is ...
by Sergey Tkachenko
Mon Nov 26, 2007 6:07 pm
Forum: Support
Topic: List Format Problem In Copying From One Table To Another
Replies: 4
Views: 11945

If CellInTable1 and CellInTable2 are in the same editor, why do you use IntermeditateRVE?