Search found 9401 matches

by Sergey Tkachenko
Thu Nov 29, 2007 10:06 am
Forum: Support
Topic: Import from Word (some problems)
Replies: 6
Views: 15677

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

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

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

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

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

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

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

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

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?
by Sergey Tkachenko
Fri Nov 23, 2007 3:55 pm
Forum: Support
Topic: Change scrollBars behaviour?
Replies: 4
Views: 10556

Yes, WM_NCPaint is overriden to draw WinXP-themed border.
Try to set UseXPThemes property to False.
by Sergey Tkachenko
Fri Nov 23, 2007 3:52 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48138

1) In order to load RVF file containing controls, you need to register them with RegisterClasses. For example, if you use TButton and TEdit in document, call: RegisterClasses([TButton, TEdit]); Do it one time before the first loading. 2) Sorry, I do not understand the second question. Do you want to...
by Sergey Tkachenko
Fri Nov 23, 2007 5:29 am
Forum: Support
Topic: Change scrollBars behaviour?
Replies: 4
Views: 10556

TRichView components use standard scrollbars, there is nothing special with them.
Alternatively, you can hide scrollbars (VScrollVisible = HScrollVisible = False) and use external scrollbar components, updating them in events (OnVScrolled, OnHScrolled)
by Sergey Tkachenko
Thu Nov 22, 2007 2:50 pm
Forum: ScaleRichView
Topic: Disable automatic scaling when resizing
Replies: 6
Views: 24709

In WYSIWYG mode, page looks exactly like it will be printed. Lines on screen are wrapped exactly at the same places as on paper. Wrapping does not depend on the editor's window width. Several ScaleRichView demos allow switching between 3 layouts: normal mode, web mode, page-view mode. You can see bu...