Search found 9409 matches

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

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

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

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

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

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

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

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

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

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)
by Sergey Tkachenko
Wed Jun 14, 2006 4:12 pm
Forum: Support
Topic: Adding New Fonts To Table Storage
Replies: 3
Views: 12283

I guess these new font styles are already removed from RVStyle when you load RVF.
by Sergey Tkachenko
Wed Jun 14, 2006 4:08 pm
Forum: Support
Topic: Resizing a delphi component
Replies: 1
Views: 8433