Search found 9406 matches

by Sergey Tkachenko
Mon Oct 29, 2007 8:24 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 75895

Does TRVPrintPreview look ok on these VMWare widescreen?
by Sergey Tkachenko
Sun Oct 28, 2007 6:31 pm
Forum: Support
Topic: Paragraph Shading
Replies: 3
Views: 12663

Background pattern, such as horizontal lines, diagonal lines and so on?
It is not implemented. If you want to draw them, use TRVStyle.OnDrawParaBack event.
by Sergey Tkachenko
Sun Oct 28, 2007 6:13 pm
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 75895

I received it and forwarded to proxy3d
by Sergey Tkachenko
Sun Oct 28, 2007 5:52 pm
Forum: Support
Topic: Invisible Cell Borders
Replies: 1
Views: 7551

As for attempt to make cell borders white: it will work only if rvTable->CellBorderStyle= rvtbColor; rvTable->CellBorderWidth = 1; // any positive value rvTable->CellBorderColor = clWhite; (and VisibleBorders for all cells are true) As for attempts to hide cell borders by assigning CellBorderWidth =...
by Sergey Tkachenko
Sun Oct 28, 2007 3:35 pm
Forum: Support
Topic: Vista Theme compatibility.
Replies: 6
Views: 13704

Finally, the problem is confirmed and wil be fixed in the next update.
by Sergey Tkachenko
Sun Oct 28, 2007 10:10 am
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31828

As for the exception. Link each DBRichViewEdit to its own TRVStyle object. The error happens because when the second editor loads from DB, it replaces collection of text, paragraph and list styles in RVStyle1, and the first editor cannot use them to display its document. As for DBISAM. So this conve...
by Sergey Tkachenko
Sun Oct 28, 2007 9:33 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 75895

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

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

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

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

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

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

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

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

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;