Search found 56 matches

by Pieter E.
Wed Jun 21, 2006 8:32 am
Forum: Support
Topic: Clicking a table cell causes OnItemAction to fire
Replies: 8
Views: 26352

Dear Sergey, I found the same problem when a picture is nested in a table the rviaInserted is used while the picture isn't inserted by the user. I use the following sourceparts: rve->RVFOptions = rve->RVFOptions >> rvfoSavePicturesBody >> rvfoSaveBack; ONRVFPictureNeeded event for loading images fro...
by Pieter E.
Mon May 29, 2006 6:35 pm
Forum: Examples, Demos
Topic: [Example] Modification of "Search and Mark" demo
Replies: 16
Views: 160519

Is there a C++ example available of this last post?

Thanks.
by Pieter E.
Tue May 02, 2006 4:58 pm
Forum: Support
Topic: External scrollbars
Replies: 8
Views: 25622

Dear Sergey, I made a mistake in the above post: Why is the horizontal scrollbar always visible in the TRichViewEdit? Are external scrollbars a solution to remove the 'always visible horizontal scrollbar'? I meant the vertical scrollbar: Why is the vertical scrollbar always visible in the TRichViewE...
by Pieter E.
Tue May 02, 2006 12:48 pm
Forum: Support
Topic: External scrollbars
Replies: 8
Views: 25622

I've tried the source for adding external scrollbars. Replacing the source below works better. The first and last Steps when scrolling are better performed. Replace 'HorizScrollBar.Position' for 'ScrollPos': procedure TScrollForm.HorizScrollBarScroll(Sender: TObject; ScrollCode: TScrollCode; var Scr...
by Pieter E.
Thu Apr 27, 2006 10:25 am
Forum: Support
Topic: RVE Border Color
Replies: 3
Views: 13966

Hi, You could try this (C++): void __fastcall TForm1::Button1Click(TObject *Sender) { if( RichViewEdit1->Parent->InheritsFrom(__classid(TForm))) { RichViewEdit1->BorderStyle = bsNone; ((TForm *)RichViewEdit1->Parent)->Canvas->Pen->Color = clBlack; ((TForm *)RichViewEdit1->Parent)->Canvas->Rectangle(...
by Pieter E.
Thu Feb 23, 2006 7:21 pm
Forum: Support
Topic: Need help with inserting controls
Replies: 2
Views: 12150

Dear Alex, You could add the following source in the OnSelect event of your TRichViewEdit (C++) to retreive information from a component: if(rve->CurItemNo < 0) return; if(rve->CurItemStyle == rvsComponent) { AnsiString aName; TControl *aCtrl; TRVVAlign AVAlign; int iTag; int iIndex; rve->GetCurrent...
by Pieter E.
Thu Dec 22, 2005 1:19 pm
Forum: Examples, Demos
Topic: [Component] Using Shockwave Flash ActiveX in RichView
Replies: 22
Views: 281723

Sorry, I'm the 'Guest' this time. :D (I didn't login)
by Pieter E.
Wed Dec 21, 2005 10:20 am
Forum: Examples, Demos
Topic: [Component] Using Shockwave Flash ActiveX in RichView
Replies: 22
Views: 281723

Dear Sergey, I've tried the sourcecode for handling TMyShockwaveFlash in C++ without any success. I'd like to try it using another method. I found a way to handle TShockwaveFlash, TMediaPlayer and QuickTime without errors in TRichViewEdit. (Drag&Drop, Stretching, Resizing, Playing, Stopping, etc...
by Pieter E.
Tue Nov 22, 2005 3:10 pm
Forum: Support
Topic: OpenDocument support
Replies: 17
Views: 58013

@Rob:Congratulations with your son!
by Pieter E.
Sun Oct 02, 2005 10:41 am
Forum: Support
Topic: Text beside Image
Replies: 6
Views: 28833

Yes, please add this option!

Thanks!
by Pieter E.
Thu Sep 08, 2005 6:44 am
Forum: Examples, Demos
Topic: [Component] Using Shockwave Flash ActiveX in RichView
Replies: 22
Views: 281723

Using Shockwave Flash ActiveX in RichView (C++) ??

Dear Sergey,

Do you have a sample in C++ for 'Using Shockwave Flash ActiveX in RichView'

Thanks.

Pieter E.