Search found 9409 matches

by Sergey Tkachenko
Wed Oct 31, 2007 5:43 pm
Forum: Support
Topic: Drag & Drop Problems - Need Advice
Replies: 3
Views: 10971

The only way to allow pasting files with other extensions is processing OnDropFiles event.
New help file (available for registered users) has an example how to use this event.
by Sergey Tkachenko
Wed Oct 31, 2007 5:33 pm
Forum: Support
Topic: Drag & Drop Problems - Need Advice
Replies: 3
Views: 10971

Well, you can use OnOleDragEnter, OnOleDragLeave, OnOleDrop and OnChange events: procedure TForm3.RichViewEdit1OleDragEnter(Sender: TCustomRichView; const DataObject: IDataObject; Shift: TShiftState; X, Y: Integer; PossibleDropEffects: TRVOleDropEffects; var DropEffect: TRVOleDropEffect); begin Rich...
by Sergey Tkachenko
Wed Oct 31, 2007 5:14 pm
Forum: Support
Topic: Cannot Display BLOB From MS Access Database
Replies: 15
Views: 31853

This image is in PNG format. PNG graphic class is not included in Delphi, but you can download free thirdparty implementation from http://pngdelphi.sourceforge.net/ After that, include CRVData, PngImage in "uses", and add initialization section to your unit: initialization RV_RegisterPngGr...
by Sergey Tkachenko
Mon Oct 29, 2007 8:24 am
Forum: ScaleRichView
Topic: Compiled Demo/font appearance
Replies: 24
Views: 76036

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

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

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

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

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

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

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

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

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

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

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

What field type do you use? Probably it cannot contain binary documents.
Try to set TDBRichViewEdit.FieldFormat = RTF.