Search found 9411 matches

by Sergey Tkachenko
Thu Jun 22, 2006 3:34 pm
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 235110

Yes, it can be used for TRichViewEdit too.

PS: I just modified it to take tab characters into account. Line breaks are still not counted.
by Sergey Tkachenko
Wed Jun 21, 2006 8:50 pm
Forum: Support
Topic: Clicking a table cell causes OnItemAction to fire
Replies: 8
Views: 26413

?
OnItemAction with rviaInserted is called when the item is already inserted in the list of items of RVData, and its index in this list is known.
by Sergey Tkachenko
Wed Jun 21, 2006 8:47 pm
Forum: Support
Topic: Transparent TGIFImage and TRichView
Replies: 2
Views: 10415

Please send me problematic gif image.
by Sergey Tkachenko
Wed Jun 21, 2006 8:44 pm
Forum: Support
Topic: TGIFImage and Clear()
Replies: 3
Views: 13065

Assign is better and faster, because the source and the destination graphic classes will share the same graphic object (graphic objects use copy-on-write mechanism). Memory and resources are saved.
by Sergey Tkachenko
Tue Jun 20, 2006 8:22 pm
Forum: Support
Topic: TGIFImage and Clear()
Replies: 3
Views: 13065

Try to use this code:

Code: Select all

TGIFImage* getimg = new TGIFImage;
getimg->Assign(*mainfrm->Emoty->GetEmotiokon(img)); 
RichView->AddPictureExTag(img, getimg, -1, rvvaBaseline, 0); 
by Sergey Tkachenko
Mon Jun 19, 2006 5:32 pm
Forum: Support
Topic: Getting the Latest Version
Replies: 2
Views: 9982

I opened access to the protected section of this forum.
See "Announcement"
by Sergey Tkachenko
Sat Jun 17, 2006 7:19 am
Forum: Support
Topic: TRichViewEdit as a single line edit box
Replies: 5
Views: 17457

Yes, you can use OnKeyDown to disable Up and Down keys.
Also, set WheelStep property = 0.
by Sergey Tkachenko
Sat Jun 17, 2006 7:15 am
Forum: Support
Topic: Is TRichViewEdit limited in size ?
Replies: 3
Views: 12779

So, all files are merged correctly, but the problem is in PDF output?
Please address this question to TRichViewPdf developers.
by Sergey Tkachenko
Thu Jun 15, 2006 1:49 pm
Forum: Support
Topic: merging 2 rtf files into 1 single rtf & converting to pd
Replies: 2
Views: 10733

I do not know default property values for TRichViewPDF.RichView. Make sure that TRichViewPDF.RichView.RTFReadProperties.ParaStyleMode = TRichViewPDF.RichView.RTFReadProperties.TextStyleMode = rvrsAddIfNeeded. As for adding page break before the second file: var ItemCount: Integer; RichViewEdit1.Clea...
by Sergey Tkachenko
Thu Jun 15, 2006 1:44 pm
Forum: Support
Topic: Image printing
Replies: 6
Views: 22276

Yes, picture printing code was changed since v1.8
by Sergey Tkachenko
Thu Jun 15, 2006 1:42 pm
Forum: Support
Topic: PDF Import
Replies: 4
Views: 16196

You should search some thirdparty component or library extracting text from PDF... Sorry, I cannot help here.
by Sergey Tkachenko
Thu Jun 15, 2006 1:40 pm
Forum: Support
Topic: TRichViewEdit as a single line edit box
Replies: 5
Views: 17457

Set RichViewEdit.VSmallStep := 1 (before calling Format)
by Sergey Tkachenko
Thu Jun 15, 2006 1:39 pm
Forum: Support
Topic: Table -> Cell[c,r] -> selectAll
Replies: 5
Views: 17577

if not EDITOR.GetCurrentItemEx(TRVTableItemInfo, rve, item) then exit; table := TRVTableItemInfo(item); if table.GetEditedCell(r,c)<>nil then begin TCustomRVFormattedData(table.Cells[r,c].GetRVData).SelectAll; TCustomRVFormattedData(table.Cells[r,c].GetRVData).Invalidate; Caption := 'Cell: ' + intt...
by Sergey Tkachenko
Thu Jun 15, 2006 12:50 pm
Forum: Examples, Demos
Topic: [Example] Modification of "Search and Mark" demo
Replies: 16
Views: 162506

Code of the last example is modified (LastPos implementation is changed)
by Sergey Tkachenko
Wed Jun 14, 2006 4:14 pm
Forum: Support
Topic: Removing the dashed line when a table is active.
Replies: 4
Views: 15896

Hmm, dashed lines (table grid) should be always displayed, regardless of the caret position.
To remove table grid, set RichViewTableGridStyle := psClear (variable from RVTable unit)