Search found 9406 matches

by Sergey Tkachenko
Sat Oct 06, 2007 7:28 am
Forum: Support
Topic: Direct link error on html!!
Replies: 1
Views: 7324

If you use RichViewActions, they can do it automatically with Indy. If not, you should process RvHtmlImporter.OnImageRequired2 event (or, better, RichView.OnImportPicture) to download images from the remote comuter. There are two demos using Indy components: 1) http://www.trichview.com/resources/htm...
by Sergey Tkachenko
Thu Oct 04, 2007 6:53 am
Forum: Support
Topic: Visible space and new line characters.
Replies: 2
Views: 8499

Include rvoShowSpecialCharacters in TRichViewEdit.Options.
If document is already displayed, call Reformat to update.
by Sergey Tkachenko
Sun Sep 30, 2007 9:23 am
Forum: Support
Topic: Update TextStyles...?
Replies: 2
Views: 9297

Please send me a simple application reproducing this problem.
by Sergey Tkachenko
Sat Sep 29, 2007 8:10 am
Forum: Support
Topic: RVActions insert table popup dalog and TBX bug under Vista
Replies: 1
Views: 8056

If this problem is TBX-specific then sorry, I cannot help here...
by Sergey Tkachenko
Sat Sep 29, 2007 8:06 am
Forum: Support
Topic: rvfreadinteger error -----> when it is a hyperlink
Replies: 2
Views: 11903

Include rvoTagsArePChars in RichView.Options.
by Sergey Tkachenko
Thu Sep 27, 2007 3:31 pm
Forum: Support
Topic: Background Images
Replies: 2
Views: 9586

1. Yes, there are only backgrounds of cells, tables, and the document as a whole. Additionally, list markers can have picture (Picture property).
2. Yes, the current version supports event-loading only for pictures and "hot-pictures".
3. Will be implemented in one of future updates.
by Sergey Tkachenko
Thu Sep 27, 2007 3:28 pm
Forum: Support
Topic: Numbering style
Replies: 3
Views: 11343

Current version of RichViewActions does not support this feature. The only way to define numbering size in RichViewActions is using the bullets&numbering dialog. As for creating numbering yourself. You can take the demo in Demos\Delphi\Assorted\ListStyles\Bullets\ as a sample. Modify the functio...
by Sergey Tkachenko
Tue Sep 25, 2007 4:25 pm
Forum: Support
Topic: Right align
Replies: 1
Views: 6912

How to convert printer sizes to inches or mm: DC := RV_GetPrinterDC; // from PtblRV unit // size of printable area in printer pixels Width := GetDeviceCaps(DC, HORZRES); Height := GetDeviceCaps(DC, VERTRES); // "physical" offsets (from paper borders to printable area) phoX := GetDeviceCaps...
by Sergey Tkachenko
Tue Sep 25, 2007 10:30 am
Forum: Support
Topic: TRVReportHelper and clipping
Replies: 4
Views: 15365

You can do it yourself.
Before drawing page, call IntersectClipRect(Canvas.Handle, Left, Top, Right, Bottom), where Rect(Left, Top, Right, Bottom) is a clipping area.
by Sergey Tkachenko
Tue Sep 25, 2007 10:13 am
Forum: Examples, Demos
Topic: [Example] Smart indent
Replies: 7
Views: 59882

[Example] Smart indent

Smart indent, programming style When user presses Enter key, this code adds space characters at the beginning of new paragraph (as many spaces as at the beginning of the current paragraph). // Returns count of space characters at the beginning of the current paragraph function GetLeadingSpacesCount...
by Sergey Tkachenko
Tue Sep 25, 2007 9:59 am
Forum: Support
Topic: TRVReportHelper and clipping
Replies: 4
Views: 15365

Sorry, which kind of clipping do you need?
by Sergey Tkachenko
Mon Sep 24, 2007 3:41 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 99511

Update 2007-Sep-24: ScaleRichView v1.3.0 This is mainly a bugfix release. Warning: some properties and methods were renamed. If you have questions about disappeared properties, post them in this forum. Help file was rewritten completely and includes topics about all ScaleRichView components. New de...
by Sergey Tkachenko
Mon Sep 24, 2007 1:29 pm
Forum: Support
Topic: GIF is displayed but not animated when using BCB6, why?
Replies: 2
Views: 8239

1) Assign RichView1->AnimationMode = rvaniOnFormat
2) Make sure that RVGifAnimate is linked to the project
(add the line
#pragma link "RVGifAnimate"
to one of your units)
by Sergey Tkachenko
Sun Sep 23, 2007 5:23 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3263144

Update: http://www.trichview.com/support/files/mime.zip contains demo for sending HTML e-mail with Indy. Updated 2008-Jan-4 : E-mail structure used with the SendEmail project is changed. E-mails sent by the previous version were read by Outlook Express, but other mailers had problems. Now documents ...
by Sergey Tkachenko
Fri Sep 21, 2007 5:42 pm
Forum: Support
Topic: Sent an email to [email protected] but no reply
Replies: 7
Views: 17995

I belive the problem is solved now.