Search found 9401 matches

by Sergey Tkachenko
Sat Dec 22, 2007 4:09 pm
Forum: Support
Topic: rvuCentimeters
Replies: 1
Views: 8051

RichViewEdit.DocParameters property does not affect how documents are displayed. Its primary use is to save this information in RTF files (and in RVF files). TRVRuler cannot change them, because it's impossible (it cannot change page size, page margins and other DocParameters, because they are not d...
by Sergey Tkachenko
Sat Dec 22, 2007 4:00 pm
Forum: Support
Topic: Resizing Controls
Replies: 1
Views: 7797

by Sergey Tkachenko
Sat Dec 22, 2007 3:59 pm
Forum: Support
Topic: Search and replace that crosses item boundaries?
Replies: 8
Views: 23034

Yes, but after the next major update
by Sergey Tkachenko
Wed Dec 19, 2007 6:18 pm
Forum: Support
Topic: Search and replace that crosses item boundaries?
Replies: 8
Views: 23034

No, the new RichView.SearchTextW is an Unicode version of RichView.SearchText, it does not introduce any new features and cannot search across item boundaries
by Sergey Tkachenko
Wed Dec 19, 2007 8:56 am
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48137

What version of Delphi do you use?
As far as I remember, I created that Demo in Delphi 6.
Probably, something is different in other versions of Delphi.
by Sergey Tkachenko
Wed Dec 19, 2007 8:54 am
Forum: Support
Topic: Ruler - taDecimalAlign
Replies: 4
Views: 16889

This feature is supported by the ruler, but it is not supported by TRichViewEdit.
Sorry, it will not work.
by Sergey Tkachenko
Wed Dec 19, 2007 8:53 am
Forum: Support
Topic: Extract block text and put it back
Replies: 1
Views: 8004

In TRichView, document consists of items (text items, pictures, etc.). Items are indexed from 0 to rv.ItemCount-1. If the i-th item starts a new line, rv.IsFromNewLine(i) returns True. To keep text attributes, copy fragment either in RTF or (better) in RVF format. Other objects in the fragment (such...
by Sergey Tkachenko
Sat Dec 15, 2007 1:04 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48137

I believe, if components on the panel have panel as an owner, they will be saved.
Here is the example: http://www.trichview.com/forums/viewtopic.php?t=251
by Sergey Tkachenko
Sat Dec 15, 2007 11:02 am
Forum: Support
Topic: Unable to open file RVScroll.obj with Codegear BC++2007
Replies: 2
Views: 8940

OBJ files are placed in subdirectory. I do not exactly remember its name, but it seems it is either "Debug" or "Release", depending on the build mode.
Add this directory in the project options (or in the library paths for C++Builder)
by Sergey Tkachenko
Thu Dec 13, 2007 4:27 pm
Forum: Support
Topic: I have an question about TRichViewEdit
Replies: 26
Views: 48137

It's not so simple to insert RichViewEdit in RichViewEdit, because:
- it has link to TRVStyle, and links are not saved in RVF;
- it does not save its document together with its properties.
This demo shows how to solve these problems: http://www.trichview.com/forums/viewtopic.php?t=2199
by Sergey Tkachenko
Thu Dec 13, 2007 4:25 pm
Forum: Support
Topic: Wrapper for Reportbuilder and ScaleRichView
Replies: 4
Views: 12693

Do you use the latest TRichView version? There was a bug in loading RTF tables, when RTF file contains both tables with widths in % and fixed width.

Besides, tables really can be wider than page width.
by Sergey Tkachenko
Thu Dec 13, 2007 4:23 pm
Forum: Support
Topic: What kinds of process can be part of an undo group?
Replies: 3
Views: 11882

It's possible to create undo class for addition in style collections.
But, other operations may add styles as well, and it would be not simple to remove styles added only be certain operations.
I do not think this is a big problem, because unused styles can be deleted by DeleteUnusedStyles method.
by Sergey Tkachenko
Thu Dec 13, 2007 4:19 pm
Forum: Support
Topic: Hide rows/columns/cells
Replies: 5
Views: 19638

It's still not implemented
by Sergey Tkachenko
Thu Dec 13, 2007 4:18 pm
Forum: Support
Topic: HTML with/without active hyperlinks?
Replies: 4
Views: 14326

You may assign RichViewEdit1.OnWriteHyperlink := nil before saving the-no hyperlink file, and reassign it to the proper procedure when saving file with links.
by Sergey Tkachenko
Thu Dec 13, 2007 4:14 pm
Forum: Support
Topic: Dragon Naturally Speaking 9.5
Replies: 16
Views: 44678

TDBMemo uses standard edit control, so external applications must know how to get text from it. But TDBRichViewEdit is not a standard richedit control, so probably it will not work. It depends on how this software gets text from control. It may use window messages. If it uses WM_GETTEXT, it will not...