Search found 9400 matches

by Sergey Tkachenko
Thu Sep 27, 2007 3:28 pm
Forum: Support
Topic: Numbering style
Replies: 3
Views: 11340

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

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

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

[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: 15361

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

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

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

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

I belive the problem is solved now.
by Sergey Tkachenko
Fri Sep 21, 2007 1:46 pm
Forum: Support
Topic: Text style conversion
Replies: 3
Views: 12879

ApplyStyleConversion method + OnStyleConversion event.
See Demos\Delphi\Editors\Editor 2\
by Sergey Tkachenko
Thu Sep 20, 2007 6:27 pm
Forum: Support
Topic: FastReport wapper
Replies: 37
Views: 154166

Still no news.
But the next release is almost ready, after it I will be able to start working on new problems like this wrapper.
by Sergey Tkachenko
Thu Sep 20, 2007 6:23 pm
Forum: Support
Topic: Save HTML
Replies: 6
Views: 19158

var s1, s2: String; if ((SaveFormat in [rvsfHTML]) and (RVData.GetItemStyle(ItemNo) >= 0)) then begin if Sender.Style.TextStyles[RVData.GetItemStyle(ItemNo)].BackColor <> clNone then begin s1 := Format('<font style="background-color: %s">', [ColorToHex(Sender.Style.TextStyles[RVData.GetIt...
by Sergey Tkachenko
Thu Sep 20, 2007 6:15 pm
Forum: Support
Topic: Numbering style
Replies: 3
Views: 11340

How do you start numbering? Do you use RichViewActions?
by Sergey Tkachenko
Thu Sep 20, 2007 6:14 pm
Forum: Support
Topic: RV action demo test page break
Replies: 2
Views: 9383

It will be fixed in the next update.
In the current version, type any character and press backspace.
by Sergey Tkachenko
Thu Sep 20, 2007 6:07 pm
Forum: Support
Topic: Need help to remove tables from RV
Replies: 1
Views: 7469

Oh, RVData->SaveRTFToStream has a bunch of parameters.
Call

Code: Select all

table->Cells[r][c]->GetRVData()->SaveRTFToStream(Stream, '', false, 0,  clNone, NULL, NULL, NULL, NULL, NULL, 0, true); 
(the last parameter was added in a recent version)