Search found 9411 matches

by Sergey Tkachenko
Tue Sep 25, 2007 9:59 am
Forum: Support
Topic: TRVReportHelper and clipping
Replies: 4
Views: 15378

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

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

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

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

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

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

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

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

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

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

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)
by Sergey Tkachenko
Mon Sep 17, 2007 3:54 pm
Forum: Support
Topic: Table Printing problem
Replies: 9
Views: 22015

The following changes should help. 1) Change OnDrawBorder (the most important change is moving (Left, Top, Right, Bottom) rectangle to the top left by one pixel) procedure TForm1.DoDrawBorder(Sender: TRVTableItemInfo; Canvas: TCanvas; Left, Top, Right, Bottom, Width: Integer; LightColor, Color, Back...
by Sergey Tkachenko
Mon Sep 17, 2007 3:32 pm
Forum: Support
Topic: How to get the size in pixels of the Blue bar when selecting
Replies: 4
Views: 11934

My suggestions are below, if the selection is not inside table cells. var StartItemNo, StartOffs, EndItemNo, EndOffs, StartDItemNo, StartDOffs, EndDItemNo, EndDOffs: Integer; SelTop, SelBottom, VisTop, VisBottom: Integer; RichView1.GetSelectionBounds(StartItemNo, StartOffs, EndItemNo, EndOffs, True)...
by Sergey Tkachenko
Mon Sep 17, 2007 3:19 pm
Forum: ScaleRichView
Topic: ScaleRichView OnItemHint
Replies: 4
Views: 20943

What version of ScaleRichView do you use?
by Sergey Tkachenko
Fri Sep 14, 2007 4:58 pm
Forum: Support
Topic: Image path when HTML saving(Pls hep me :(()
Replies: 7
Views: 16199

Yes, by default TRichView saves relative paths. You can override it in OnHTMLSaveImage event: procedure TForm3.RichViewEdit1HTMLSaveImage(Sender: TCustomRichView; RVData: TCustomRVData; ItemNo: Integer; const Path: String; BackgroundColor: TColor; var Location: String; var DoDefault: Boolean); var F...