Search found 9409 matches

by Sergey Tkachenko
Tue Jul 24, 2007 3:52 pm
Forum: ScaleRichView
Topic: Matching margins/pages to a pdf
Replies: 12
Views: 43179

Can you send example of RVF and PDF showing this problem to ilya at trichview dot com ?
by Sergey Tkachenko
Tue Jul 24, 2007 3:50 pm
Forum: ScaleRichView
Topic: List index out of bounds problem
Replies: 3
Views: 18559

Please send bug reports directly to ilya at trichview dot com
In this way they will be answered faster.
by Sergey Tkachenko
Tue Jul 24, 2007 3:44 pm
Forum: ScaleRichView
Topic: Moved the topic "ScaleRichView - shareware..."
Replies: 3
Views: 19146

There should be no problems replacing TRichViewEdit to TSRichViewEdit. Just use TSRichViewEdit.RichViewEdit property to access internal TRichViewEdit. All operations on this TRichViewEdit will be reflected on TSRichViewEdit. As you can see, all RichViewActions (initially designed for TRichViewEdit) ...
by Sergey Tkachenko
Tue Jul 24, 2007 2:46 pm
Forum: Support
Topic: HTML font size
Replies: 5
Views: 21130

SaveHTML does not use CSS, only SaveHTMLEx does. And it uses <span> instead of <div>/<p> for defining font attibutes, because in TRichView paragraphs do not have font attributes. SaveHTML uses outdated tags because it is designed to generate HTML for outdated or simple browsers. For generating moder...
by Sergey Tkachenko
Tue Jul 24, 2007 2:44 pm
Forum: Support
Topic: How to set cursor at the end of document ?
Replies: 8
Views: 21697

May be your RichViewEdit was not formatted?
by Sergey Tkachenko
Tue Jul 24, 2007 2:43 pm
Forum: Support
Topic: Memory leak still persists
Replies: 3
Views: 10213

What tool do you use to see how much memory the application use? It may be inaccurate, it may show memory that was released by the application but was not returned to the system yet. Try to minimize the project and restore it, after that the tool may show the proper amount of memory the application ...
by Sergey Tkachenko
Tue Jul 24, 2007 2:27 pm
Forum: Support
Topic: Sent an email to [email protected] but no reply
Replies: 7
Views: 18000

I received your e-mail, sorry for the delay.
It will take some time to review your modification of RVHTMLImporter, considering the fact that it was not developed by me and I do not know it in details.
by Sergey Tkachenko
Tue Jul 24, 2007 2:20 pm
Forum: Support
Topic: Support for RichEdit 4.1 - source code
Replies: 2
Views: 12647

Err... sorry, what is frxRichEdit.pas?
by Sergey Tkachenko
Tue Jul 24, 2007 2:16 pm
Forum: Support
Topic: Text floating around picture
Replies: 5
Views: 14383

No, this feature is not implemented yet.
by Sergey Tkachenko
Tue Jul 24, 2007 2:06 pm
Forum: ScaleRichView
Topic: Screenshots
Replies: 3
Views: 21862

SRVPrint and SRVPreview.

Image

Image
by Sergey Tkachenko
Sun Jul 22, 2007 3:32 pm
Forum: ScaleRichView
Topic: Addict Spell Check problems
Replies: 12
Views: 53919

We will check this problem.
by Sergey Tkachenko
Sun Jul 22, 2007 1:55 pm
Forum: Support
Topic: Image in LeftMargin
Replies: 4
Views: 11725

In the ActionTest demo, background image fills the whole editor window. This image is very wide, but noticeable drawing is only in the left side of this image. It makes the effect that the image is only on the left margin, but it's not true for this demo. TRichView.BackgroundStyle property allows pl...
by Sergey Tkachenko
Sun Jul 22, 2007 11:34 am
Forum: Support
Topic: Image in LeftMargin
Replies: 4
Views: 11725

This demo uses BackgroundBitmap.
Besides, you can use TRichView.OnPaint or custom drawing items of TRVStyle.
by Sergey Tkachenko
Sat Jul 21, 2007 6:08 pm
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 234066

Calculating a number of words in the selection. uses RVWordEnum, RVTable, CRVFData; type TSelWordCounter = class(TRVWordEnumerator) private FCounter: Integer; FSelRVData: TCustomRVFormattedData; FSelStartItemNo, FSelStartOffs, FSelEndItemNo, FSelEndOffs: Integer; protected function ProcessWord: Boo...
by Sergey Tkachenko
Sat Jul 21, 2007 11:20 am
Forum: Support
Topic: Memory leak still persists
Replies: 3
Views: 10213

Deleted text is stored in undo buffer until you call File | New or File | Open.
See also: UndoLimit property.

ClearUndo method clears undo and redo buffers.
Clear method calls ClearUndo.