Search found 9405 matches

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

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: 15678

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: 12714

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: 48139

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: 15678

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: 14836

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: 48139

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: 15678

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: 14836

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: 11937

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: 11937

If CellInTable1 and CellInTable2 are in the same editor, why do you use IntermeditateRVE?
by Sergey Tkachenko
Mon Nov 26, 2007 6:00 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48139

This procedure deletes all text items from document: uses CRVData, RVTable, RVNormalize; procedure DeleteText(RVData: TCustomRVData); var i,r,c: Integer; table: TRVTableItemInfo; begin for i := RVData.ItemCount-1 downto 0 do if (RVData.GetItemStyle(i)>=0) or (RVData.GetItemStyle(i)=rvsTab) then // t...
by Sergey Tkachenko
Mon Nov 26, 2007 5:52 pm
Forum: Support
Topic: Table not printing whole text when more than 1 page
Replies: 1
Views: 6981

This feature (page breaks in table cells) is not implemented in v1.9.24.
It is implemented in the current version (available for registered users). Trials will be updated in December.
by Sergey Tkachenko
Mon Nov 26, 2007 5:47 pm
Forum: ScaleRichView
Topic: Editing Problem on page 2
Replies: 3
Views: 17018

The latest ScaleRichView update uses new redrawing method. It is much better than the previous one, but may have some glitches. They will be fixed in the next update. As for RTF problem, it is obviously a bug in saving page layout in RTF. Probably, ScaleRichView assigns incorrect measurement units. ...
by Sergey Tkachenko
Mon Nov 26, 2007 4:05 pm
Forum: ScaleRichView
Topic: GPF when printing
Replies: 8
Views: 31304

Did you send error report to Ilya?