Search found 9400 matches

by Sergey Tkachenko
Sun Oct 28, 2007 9:33 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 75796

Please send me a screenshot of bad display.
On my computer, ScaleRichView looks ok.
by Sergey Tkachenko
Fri Oct 26, 2007 5:23 pm
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 75796

The current compiled version uses ScaleRichView 1.3.1
No, scaling is the same, this is not a simple change to make. It is planned for future, but not very near.
by Sergey Tkachenko
Fri Oct 26, 2007 4:31 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99373

Update 2007-Oct-26: ScaleRichView v1.3.2

fix: allowing/disallowing image resizing
by Sergey Tkachenko
Fri Oct 26, 2007 4:17 pm
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31817

Your database has data in strange format - RTF converted to Unicode (WideString). TDBRichViewEdit does not understand it, so it reads it as a plain text, and you can see RTF codes (with space character between each RTF character). You can use OnLoadCustomFormat event to display such fields in TDBRic...
by Sergey Tkachenko
Fri Oct 26, 2007 7:21 am
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31817

Please send me a test project with test database.
by Sergey Tkachenko
Thu Oct 25, 2007 3:26 pm
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31817

What field type do you use? Probably it cannot contain binary documents.
Try to set TDBRichViewEdit.FieldFormat = RTF.
by Sergey Tkachenko
Thu Oct 25, 2007 2:17 pm
Forum: Support
Topic: rvhtmlimport - List Index Out Of Bounds (1)
Replies: 1
Views: 8058

In some cases, RvHtmlImporter generates invalid documents (see "Valid Documents" topic in the help file). It can be fixed by calling NormalizeRichView(RichView1.RVData) after RvHtmlImporter1.LoadHtml. NormalizeRichView is from RVNormalize unit, included in RichViewActions (but can be used ...
by Sergey Tkachenko
Thu Oct 25, 2007 10:25 am
Forum: Examples, Demos
Topic: [Example] Converting table to text
Replies: 2
Views: 46098

This version of ConvertTableToText inserts ';' instead of line breaks between table cells (line breaks are inserted between rows). It has a new parameter: EqualDelimCount. If it is True, the same number (table.ColCount-1) of semicolons will be inserted for each row. If it is False, semicolons will n...
by Sergey Tkachenko
Tue Oct 23, 2007 12:05 pm
Forum: Support
Topic: Inserting row into table if table not in focus
Replies: 1
Views: 6854

The code is the same as for modifying table at the caret position:

Code: Select all

var Data: Integer;

rve.BeginItemModify(ItemNo, Data);
with rve.GetItem(ItemNo) as TRVTableItemInfo do
  InsertRows(RowCount, 1, RowCount-1);
rve.EndItemModify(ItemNo, Data);
rve.Change;
by Sergey Tkachenko
Tue Oct 23, 2007 10:11 am
Forum: Support
Topic: Offer: License for translation (German, Spanish, Portuguese)
Replies: 4
Views: 12817

Up
by Sergey Tkachenko
Tue Oct 23, 2007 8:43 am
Forum: Examples, Demos
Topic: [Example] Smart indent
Replies: 7
Views: 59561

Smart indent/unindent, MS Word style This code changes FirstIndent and LeftIndent of paragraph, if Tab/Backspace is pressed when the caret is at the beginning of paragraph. First, it changes FirstIndent. Next, if FirstIndent is already changed, it changes LeftIndent. This code changes indents only ...
by Sergey Tkachenko
Mon Oct 22, 2007 5:22 pm
Forum: Support
Topic: select control with right click mouse
Replies: 1
Views: 7921

Resizing handles appear when the control is selected. That means you have code selecting controls on clicking. If you used this demo as a sample: http://www.trichview.com/forums/viewtopic.php?t=157 this code is // This procedure is assigned to OnMouseDown of all inserted buttons procedure TForm1.Con...
by Sergey Tkachenko
Fri Oct 19, 2007 4:50 am
Forum: Support
Topic: Change underlined ‘red’ words in (underlined) ‘fuchsia’ word
Replies: 4
Views: 12062

If you want to change color of all hyperlinks (without necessity to undo it), use this code // assuming DBRichViewEdit1.Style = RVStyle1 if DBRichViewEdit1.CanChange then begin for i := 0 to RVStyle1.TextStyles.Count-1 do if RVStyle1.TextStyles[i].Jump and (RVStyle1.TextStyles[i].Color = OldColor) t...
by Sergey Tkachenko
Thu Oct 18, 2007 4:45 pm
Forum: Support
Topic: Change underlined ‘red’ words in (underlined) ‘fuchsia’ word
Replies: 4
Views: 12062

Do you need to implement it as an editing operation (that can be undone by user)?
by Sergey Tkachenko
Thu Oct 18, 2007 10:19 am
Forum: Support
Topic: double underline . Possible ?
Replies: 7
Views: 18235

Dates of exe-demos and trial versions on the site must be correct. Trials were updated in April 2007, but TRichView version used for this trial (1.9.24) is much older (becase it was the latest non-beta version at the moment of trial update). The latest version available for registered users is 1.9.4...