Search found 9409 matches

by Sergey Tkachenko
Mon Aug 20, 2007 10:54 am
Forum: Support
Topic: Changing the fontname of text in a document
Replies: 4
Views: 13676

Code: Select all

for i :=0 to VStyles.TextStyles.Count-1 do
  VRichView.Style.TextStyles[i].FontName := 'Arial Unicode MS'; 
VRichView.Format;
PS: currently, TRichView cannot work without Parent assigned.

So add:

Code: Select all

VRichView.Visible := False;
VRichView.Parent := <some form>
by Sergey Tkachenko
Mon Aug 20, 2007 10:50 am
Forum: Support
Topic: Print a defined rtf
Replies: 3
Views: 10215

Place on form: RichView1: TRichView, RVStyle1: TRVStyle; RVPrint1: TRVPrint. Assign (at designtime) RichView1.Style := RVStyle1. Loading RTF file: RichView1.Clear; RichView1.LoadRTF('/home/peter/test.rtf'); RichView1.Format; Next, you need to choose printer. RVPrint uses the application printer sett...
by Sergey Tkachenko
Mon Aug 20, 2007 10:37 am
Forum: Support
Topic: SaveRVFToStream problem
Replies: 1
Views: 7696

If you use Delphi debuger to view Stream.Size, it shows wrong value.
I do not know why, but it does not show Stream.Size correctly.
by Sergey Tkachenko
Mon Aug 20, 2007 9:32 am
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99692

Update 2007-Aug-20: ScaleRichView v1.2.9 Not all new features are included in the help files yet, it will be fixed in the next update Mainly fixes. InsertControls demo was moved from Demos\Advanced to Demos\Controls, so, when installing over the existing installation, delete the old version of demo...
by Sergey Tkachenko
Mon Aug 20, 2007 9:27 am
Forum: ScaleRichView
Topic: TScaleRichView - EListIndex out of Bounds Error
Replies: 6
Views: 25468

Just uploaded
by Sergey Tkachenko
Fri Aug 17, 2007 5:08 pm
Forum: ScaleRichView
Topic: TScaleRichView - EListIndex out of Bounds Error
Replies: 6
Views: 25468

This bug is fixed, but we need to make a couple of other changes before the new release, so it will be uploaded tomorrow.
by Sergey Tkachenko
Fri Aug 17, 2007 2:09 pm
Forum: Support
Topic: Copy/Paste without Linefeed
Replies: 4
Views: 17178

In TRichView, there are no end-of-line characters. There is only a flag "this item starts a new line/paragraph". This causes some problems when copying to MS Word/RichEdit, because in TRichView it's not possible to select EOL character at the end of document (because it does not exists). I...
by Sergey Tkachenko
Fri Aug 17, 2007 2:02 pm
Forum: Support
Topic: TRVTextItemInfo
Replies: 5
Views: 11973

Sorry, I do not understand. Can you explain in another words?
by Sergey Tkachenko
Fri Aug 17, 2007 11:07 am
Forum: Support
Topic: ApplyListStyle
Replies: 6
Views: 15751

Probably my answer was filtered out as a spam.
It was:
The problem is in incorrect FormatString.
'%s' always means the 0th level counter.
Level[1].FormatString must be '%1:s',
Level[2].FormatString must be '%2:s'.
by Sergey Tkachenko
Fri Aug 17, 2007 11:02 am
Forum: Support
Topic: Strange problem
Replies: 4
Views: 12203

Try to call RichViewEdit.Clear after changing Unicode properties of text styles.
Initially, TRichViewEdit may have one empty text item. If you do not delete it when changing Unicode properties, it is still marked as not Unicode while linked to Unicode text style, so the problem happens.
by Sergey Tkachenko
Fri Aug 17, 2007 10:55 am
Forum: Support
Topic: Page breaks problem in Table.
Replies: 7
Views: 18068

Sorry, I do not understand what you mean. What version of TRichView do you use? If you use the the newest version of TRichView, do you mean page breaks occuring inside table cells? In this case, this not not a bug but a feature. When page break occurs between table rows, it is drawn across the TRich...
by Sergey Tkachenko
Fri Aug 17, 2007 7:22 am
Forum: ScaleRichView
Topic: TScaleRichView - EListIndex out of Bounds Error
Replies: 6
Views: 25468

Confirmed, will be fixed today.
by Sergey Tkachenko
Thu Aug 16, 2007 2:05 pm
Forum: Support
Topic: To draw a line
Replies: 3
Views: 11265

Yes, probably some terms should be changed, but they were used since the first version (and even before), so it's hard to change them...
by Sergey Tkachenko
Thu Aug 16, 2007 11:09 am
Forum: Support
Topic: To draw a line
Replies: 3
Views: 11265

This action inserts "break" - horizintal line.
It may be solid, dotted or dashed line or rectangle. You can change its width from 1 to 5. But its does not depend on font size.
by Sergey Tkachenko
Thu Aug 16, 2007 8:16 am
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99692

Update 2007-Aug-16: ScaleRichView v1.2.8 Not all new features are included in the help files yet, it will be fixed in the next update What's new 1) ScaleRichView supports inserted controls. Important note: unlike TRichView where controls are inserted directly in viewer/editor window, in ScaleRichVi...