Search found 9416 matches

by Sergey Tkachenko
Fri May 09, 2008 12:15 pm
Forum: Support
Topic: Show caret in TDBRichView
Replies: 1
Views: 8939

TDBRichView cannot show the caret because this component does not have it. TDBRichView is scrolled like, for example, a browser window.
You can use TDBRichViewEdit with ReadOnly=True instead.
by Sergey Tkachenko
Fri May 09, 2008 9:19 am
Forum: Examples, Demos
Topic: [Demo] Chat codes
Replies: 15
Views: 153757

Sorry, I never worked with youtube video.
If you know a control that can play youtube video, you can insert it in TRichView.

I believe you can use Flash ActiveX, loading Chromeless Player in it. (apiplayer.SWF): http://code.google.com/apis/youtube/chr ... l#Overview
by Sergey Tkachenko
Thu May 08, 2008 4:44 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23542

var Size: Integer;

Source.ReadBuffer(Size, 4);
by Sergey Tkachenko
Wed May 07, 2008 2:49 pm
Forum: Support
Topic: strange problem,the rvstyle font is automatically changed
Replies: 3
Views: 12533

TRichView never changes properties of existing styles itself (the only exception - loading RVF file may replace existing styles with styles from the file).
by Sergey Tkachenko
Tue May 06, 2008 8:03 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 100793

Update 2008-May-6: ScaleRichView v1.4.1 Requires: TRichView v10.1 RichViewActions v1.62 new: TDBSRichViewEdit new: event on drawing hyperlinks (can be used to define hyperlink areas in exported PDF files) new: OnCheckpointVisible and CPEventKind, analogs of the event and property of TRichView new m...
by Sergey Tkachenko
Tue May 06, 2008 3:08 pm
Forum: Support
Topic: TRVEditRVData.ApplyParaStyle feature?
Replies: 4
Views: 13820

Quite inconsistent, IMHO.
Is there any logic that if I select only table, paragraph is applied to table, but if I select table+something, paragraph is applied to table cells?
by Sergey Tkachenko
Tue May 06, 2008 3:05 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23542

'TJPEGImage' string, then line break (#13#10), then 4 bytes containing size of jpeg data, then jpeg data.
by Sergey Tkachenko
Mon May 05, 2008 5:20 pm
Forum: Support
Topic: demo ActionTest
Replies: 2
Views: 8525

This function has open array (of integer) as a parameter. It is translated to C++ as 2 parameters: (1) a pointer to array and (2) size (minus 1): bool __fastcall NextCurItem(const int * StyleNo, const int StyleNo_Size); So it should be: int styles[] = { rvsPicture, rvsHotspot, rvsHotPicture }; SRich...
by Sergey Tkachenko
Mon May 05, 2008 5:09 pm
Forum: Support
Topic: Fixed cells
Replies: 3
Views: 12177

table := TRVTableItemInfo.CreateEx(2, 2, RichViewEdit1.RVData); table.Options := table.Options + [rvtoIgnoreContentWidth, rvtoIgnoreContentHeight]; for r := 0 to table.RowCount-1 do for c := 0 to table.ColCount-1 do begin table.Cells[r,c].BestWidth := 100; table.Cells[r,c].BestHeight := 100; end; R...
by Sergey Tkachenko
Mon May 05, 2008 5:04 pm
Forum: Support
Topic: TRichview Format Error
Replies: 2
Views: 9386

Collections of text and paragraph styles must have at least one item.
May be this is the reason for this problem.
by Sergey Tkachenko
Sat May 03, 2008 11:27 am
Forum: ScaleRichView
Topic: is Rvstyle need and Page format problem
Replies: 4
Views: 20302

What version of Delphi/C++Builder and TRichView do you use?
by Sergey Tkachenko
Wed Apr 30, 2008 3:05 pm
Forum: ScaleRichView
Topic: The action test doesn't scrooll to finding word(s) ?
Replies: 4
Views: 20150

We will try to fix this problem in the next update of ScaleRichView.
by Sergey Tkachenko
Wed Apr 30, 2008 2:58 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23542

Please describe what you want to implement with more details.
by Sergey Tkachenko
Wed Apr 30, 2008 2:56 pm
Forum: Support
Topic: cell borders become invisible after exporting to HTML
Replies: 2
Views: 16203

Do you use SaveHTML or SaveHTMLEx? SaveHTML does not use CSS for tables (unless you include rvsoForceNonTextCSS in the Options parameter), so a very limited set of HTML keywords is available for it. Tables exported by SaveHTMLEx must look like in TRichView. If you think that you table is exported in...
by Sergey Tkachenko
Tue Apr 29, 2008 3:23 pm
Forum: Support
Topic: Detection af aan jpeg in a TMemorystream for a RichView
Replies: 11
Views: 23542

It is saved by TRichView in RVF. See http://www.trichview.com/help/index.html?rvf_specification.html The line "1 0 0 0 0" belongs to some text item, not to picture item. The line containing picture starts from -3 (rvsPicture). The next line is a picture name (usually empty) The next line i...